| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 const String ELEMENT_KIND = 'elementKind'; | 130 const String ELEMENT_KIND = 'elementKind'; |
| 131 const String EXCLUDED = 'excluded'; | 131 const String EXCLUDED = 'excluded'; |
| 132 const String ERROR = 'error'; | 132 const String ERROR = 'error'; |
| 133 const String ERRORS = 'errors'; | 133 const String ERRORS = 'errors'; |
| 134 const String FATAL = 'fatal'; | 134 const String FATAL = 'fatal'; |
| 135 const String FILE = 'file'; | 135 const String FILE = 'file'; |
| 136 const String FILE_STAMP = 'fileStamp'; | 136 const String FILE_STAMP = 'fileStamp'; |
| 137 const String FILES = 'files'; | 137 const String FILES = 'files'; |
| 138 const String FIXES = 'fixes'; | 138 const String FIXES = 'fixes'; |
| 139 const String FLAGS = 'flags'; | 139 const String FLAGS = 'flags'; |
| 140 const String HAS_FIX = 'hasFix'; |
| 140 const String HIERARCHY_ITEMS = 'hierarchyItems'; | 141 const String HIERARCHY_ITEMS = 'hierarchyItems'; |
| 141 const String HOVERS = 'hovers'; | 142 const String HOVERS = 'hovers'; |
| 142 const String ID = 'id'; | 143 const String ID = 'id'; |
| 143 const String INCLUDE_POTENTIAL = 'includePotential'; | 144 const String INCLUDE_POTENTIAL = 'includePotential'; |
| 144 const String INCLUDED = 'included'; | 145 const String INCLUDED = 'included'; |
| 145 const String INTERFACE_MEMBERS = 'interfaceMembers'; | 146 const String INTERFACE_MEMBERS = 'interfaceMembers'; |
| 146 const String INTERFACES = 'interfaces'; | 147 const String INTERFACES = 'interfaces'; |
| 147 const String IS_ABSTRACT = 'isAbstract'; | 148 const String IS_ABSTRACT = 'isAbstract'; |
| 148 const String IS_DEPRECATED = 'isDeprecated'; | 149 const String IS_DEPRECATED = 'isDeprecated'; |
| 149 const String IS_POTENTIAL = 'isPotential'; | 150 const String IS_POTENTIAL = 'isPotential'; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 const String STATIC_TYPE = 'staticType'; | 191 const String STATIC_TYPE = 'staticType'; |
| 191 const String SUBCLASSES = 'subclasses'; | 192 const String SUBCLASSES = 'subclasses'; |
| 192 const String SUBSCRIPTIONS = 'subscriptions'; | 193 const String SUBSCRIPTIONS = 'subscriptions'; |
| 193 const String SUGGESTIONS = 'suggestions'; | 194 const String SUGGESTIONS = 'suggestions'; |
| 194 const String SUPERCLASS = 'superclass'; | 195 const String SUPERCLASS = 'superclass'; |
| 195 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 196 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 196 const String TARGETS = 'targets'; | 197 const String TARGETS = 'targets'; |
| 197 const String TYPE = 'type'; | 198 const String TYPE = 'type'; |
| 198 const String VALUE = 'value'; | 199 const String VALUE = 'value'; |
| 199 const String VERSION = 'version'; | 200 const String VERSION = 'version'; |
| OLD | NEW |