| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 const String DISPLAY_NAME = 'displayName'; | 118 const String DISPLAY_NAME = 'displayName'; |
| 119 const String EDITS = 'edits'; | 119 const String EDITS = 'edits'; |
| 120 const String ELEMENT = 'element'; | 120 const String ELEMENT = 'element'; |
| 121 const String ELEMENT_DESCRIPTION = 'elementDescription'; | 121 const String ELEMENT_DESCRIPTION = 'elementDescription'; |
| 122 const String ELEMENT_KIND = 'elementKind'; | 122 const String ELEMENT_KIND = 'elementKind'; |
| 123 const String EXCLUDED = 'excluded'; | 123 const String EXCLUDED = 'excluded'; |
| 124 const String ERROR = 'error'; | 124 const String ERROR = 'error'; |
| 125 const String ERRORS = 'errors'; | 125 const String ERRORS = 'errors'; |
| 126 const String FATAL = 'fatal'; | 126 const String FATAL = 'fatal'; |
| 127 const String FILE = 'file'; | 127 const String FILE = 'file'; |
| 128 const String FILE_STAMP = 'fileStamp'; |
| 128 const String FILES = 'files'; | 129 const String FILES = 'files'; |
| 129 const String FIXES = 'fixes'; | 130 const String FIXES = 'fixes'; |
| 130 const String FLAGS = 'flags'; | 131 const String FLAGS = 'flags'; |
| 131 const String HIERARCHY_ITEMS = 'hierarchyItems'; | 132 const String HIERARCHY_ITEMS = 'hierarchyItems'; |
| 132 const String HOVERS = 'hovers'; | 133 const String HOVERS = 'hovers'; |
| 133 const String ID = 'id'; | 134 const String ID = 'id'; |
| 134 const String INCLUDE_POTENTIAL = 'includePotential'; | 135 const String INCLUDE_POTENTIAL = 'includePotential'; |
| 135 const String INCLUDED = 'included'; | 136 const String INCLUDED = 'included'; |
| 136 const String INTERFACE_MEMBERS = 'interfaceMembers'; | 137 const String INTERFACE_MEMBERS = 'interfaceMembers'; |
| 137 const String INTERFACES = 'interfaces'; | 138 const String INTERFACES = 'interfaces'; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 const String STATIC_TYPE = 'staticType'; | 182 const String STATIC_TYPE = 'staticType'; |
| 182 const String SUBCLASSES = 'subclasses'; | 183 const String SUBCLASSES = 'subclasses'; |
| 183 const String SUBSCRIPTIONS = 'subscriptions'; | 184 const String SUBSCRIPTIONS = 'subscriptions'; |
| 184 const String SUGGESTIONS = 'suggestions'; | 185 const String SUGGESTIONS = 'suggestions'; |
| 185 const String SUPERCLASS = 'superclass'; | 186 const String SUPERCLASS = 'superclass'; |
| 186 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 187 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 187 const String TARGETS = 'targets'; | 188 const String TARGETS = 'targets'; |
| 188 const String TYPE = 'type'; | 189 const String TYPE = 'type'; |
| 189 const String VALUE = 'value'; | 190 const String VALUE = 'value'; |
| 190 const String VERSION = 'version'; | 191 const String VERSION = 'version'; |
| OLD | NEW |