| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 const String CHILDREN = 'children'; | 107 const String CHILDREN = 'children'; |
| 108 const String CLASS_ELEMENT = 'classElement'; | 108 const String CLASS_ELEMENT = 'classElement'; |
| 109 const String CLASS_NAME = 'className'; | 109 const String CLASS_NAME = 'className'; |
| 110 const String CODE = 'code'; | 110 const String CODE = 'code'; |
| 111 const String COMPLETION = 'completion'; | 111 const String COMPLETION = 'completion'; |
| 112 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; | 112 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; |
| 113 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; | 113 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; |
| 114 const String CONTENT = 'content'; | 114 const String CONTENT = 'content'; |
| 115 const String CORRECTION = 'correction'; | 115 const String CORRECTION = 'correction'; |
| 116 const String DART_DOC = 'dartdoc'; | 116 const String DART_DOC = 'dartdoc'; |
| 117 const String DATA = 'data'; | |
| 118 const String DEFAULT = 'default'; | 117 const String DEFAULT = 'default'; |
| 119 const String DISPLAY_NAME = 'displayName'; | 118 const String DISPLAY_NAME = 'displayName'; |
| 120 const String EDITS = 'edits'; | 119 const String EDITS = 'edits'; |
| 121 const String ELEMENT = 'element'; | 120 const String ELEMENT = 'element'; |
| 122 const String ELEMENT_DESCRIPTION = 'elementDescription'; | 121 const String ELEMENT_DESCRIPTION = 'elementDescription'; |
| 123 const String ELEMENT_KIND = 'elementKind'; | 122 const String ELEMENT_KIND = 'elementKind'; |
| 124 const String EXCLUDED = 'excluded'; | 123 const String EXCLUDED = 'excluded'; |
| 125 const String ERROR = 'error'; | 124 const String ERROR = 'error'; |
| 126 const String ERRORS = 'errors'; | 125 const String ERRORS = 'errors'; |
| 127 const String FATAL = 'fatal'; | 126 const String FATAL = 'fatal'; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 const String STATIC_TYPE = 'staticType'; | 181 const String STATIC_TYPE = 'staticType'; |
| 183 const String SUBCLASSES = 'subclasses'; | 182 const String SUBCLASSES = 'subclasses'; |
| 184 const String SUBSCRIPTIONS = 'subscriptions'; | 183 const String SUBSCRIPTIONS = 'subscriptions'; |
| 185 const String SUGGESTIONS = 'suggestions'; | 184 const String SUGGESTIONS = 'suggestions'; |
| 186 const String SUPERCLASS = 'superclass'; | 185 const String SUPERCLASS = 'superclass'; |
| 187 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 186 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 188 const String TARGETS = 'targets'; | 187 const String TARGETS = 'targets'; |
| 189 const String TYPE = 'type'; | 188 const String TYPE = 'type'; |
| 190 const String VALUE = 'value'; | 189 const String VALUE = 'value'; |
| 191 const String VERSION = 'version'; | 190 const String VERSION = 'version'; |
| OLD | NEW |