| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library server.constants; | 5 library server.constants; |
| 6 | 6 |
| 7 // | 7 // |
| 8 // Server methods | 8 // Server methods |
| 9 // | 9 // |
| 10 const String SERVER_GET_VERSION = 'server.getVersion'; | 10 const String SERVER_GET_VERSION = 'server.getVersion'; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 // | 87 // |
| 88 // Property names | 88 // Property names |
| 89 // | 89 // |
| 90 const String ADD = 'add'; | 90 const String ADD = 'add'; |
| 91 const String ADDED = 'added'; | 91 const String ADDED = 'added'; |
| 92 const String ASSISTS = 'assists'; | 92 const String ASSISTS = 'assists'; |
| 93 const String CHANGE = 'change'; | 93 const String CHANGE = 'change'; |
| 94 const String CHILDREN = 'children'; | 94 const String CHILDREN = 'children'; |
| 95 const String CLASS_ELEMENT = 'classElement'; | 95 const String CLASS_ELEMENT = 'classElement'; |
| 96 const String CLASS_NAME = 'className'; | 96 const String CLASS_NAME = 'className'; |
| 97 const String CODE = 'code'; |
| 97 const String COMPLETION = 'completion'; | 98 const String COMPLETION = 'completion'; |
| 98 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; | 99 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; |
| 99 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; | 100 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; |
| 100 const String CONTENT = 'content'; | 101 const String CONTENT = 'content'; |
| 101 const String CORRECTION = 'correction'; | 102 const String CORRECTION = 'correction'; |
| 102 const String DART_DOC = 'dartdoc'; | 103 const String DART_DOC = 'dartdoc'; |
| 104 const String DATA = 'data'; |
| 103 const String DEFAULT = 'default'; | 105 const String DEFAULT = 'default'; |
| 104 const String DISPLAY_NAME = 'displayName'; | 106 const String DISPLAY_NAME = 'displayName'; |
| 105 const String EDITS = 'edits'; | 107 const String EDITS = 'edits'; |
| 106 const String ELEMENT = 'element'; | 108 const String ELEMENT = 'element'; |
| 107 const String ELEMENT_DESCRIPTION = 'elementDescription'; | 109 const String ELEMENT_DESCRIPTION = 'elementDescription'; |
| 108 const String ELEMENT_KIND = 'elementKind'; | 110 const String ELEMENT_KIND = 'elementKind'; |
| 109 const String EXCLUDED = 'excluded'; | 111 const String EXCLUDED = 'excluded'; |
| 110 const String ERROR = 'error'; | 112 const String ERROR = 'error'; |
| 111 const String ERRORS = 'errors'; | 113 const String ERRORS = 'errors'; |
| 112 const String FATAL = 'fatal'; | 114 const String FATAL = 'fatal'; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 const String STATIC_TYPE = 'staticType'; | 169 const String STATIC_TYPE = 'staticType'; |
| 168 const String SUBCLASSES = 'subclasses'; | 170 const String SUBCLASSES = 'subclasses'; |
| 169 const String SUBSCRIPTIONS = 'subscriptions'; | 171 const String SUBSCRIPTIONS = 'subscriptions'; |
| 170 const String SUGGESTIONS = 'suggestions'; | 172 const String SUGGESTIONS = 'suggestions'; |
| 171 const String SUPERCLASS = 'superclass'; | 173 const String SUPERCLASS = 'superclass'; |
| 172 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 174 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 173 const String TARGETS = 'targets'; | 175 const String TARGETS = 'targets'; |
| 174 const String TYPE = 'type'; | 176 const String TYPE = 'type'; |
| 175 const String VALUE = 'value'; | 177 const String VALUE = 'value'; |
| 176 const String VERSION = 'version'; | 178 const String VERSION = 'version'; |
| OLD | NEW |