| 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 services.constants; | 5 library services.constants; |
| 6 | 6 |
| 7 // | 7 // |
| 8 // Property names | 8 // Property names |
| 9 // | 9 // |
| 10 const String ADDED = 'added'; | 10 const String ADDED = 'added'; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 const String ELEMENT_DESCRIPTION = 'elementDescription'; | 24 const String ELEMENT_DESCRIPTION = 'elementDescription'; |
| 25 const String ELEMENT_KIND = 'elementKind'; | 25 const String ELEMENT_KIND = 'elementKind'; |
| 26 const String EXCLUDED = 'excluded'; | 26 const String EXCLUDED = 'excluded'; |
| 27 const String ERROR = 'error'; | 27 const String ERROR = 'error'; |
| 28 const String ERRORS = 'errors'; | 28 const String ERRORS = 'errors'; |
| 29 const String FATAL = 'fatal'; | 29 const String FATAL = 'fatal'; |
| 30 const String FILE = 'file'; | 30 const String FILE = 'file'; |
| 31 const String FILES = 'files'; | 31 const String FILES = 'files'; |
| 32 const String FIXES = 'fixes'; | 32 const String FIXES = 'fixes'; |
| 33 const String FLAGS = 'flags'; | 33 const String FLAGS = 'flags'; |
| 34 const String HIERARCHY = 'hierarchy'; | 34 const String HIERARCHY_ITEMS = 'hierarchyItems'; |
| 35 const String HOVERS = 'hovers'; | 35 const String HOVERS = 'hovers'; |
| 36 const String ID = 'id'; | 36 const String ID = 'id'; |
| 37 const String INCLUDE_POTENTIAL = 'includePotential'; | 37 const String INCLUDE_POTENTIAL = 'includePotential'; |
| 38 const String INCLUDED = 'included'; | 38 const String INCLUDED = 'included'; |
| 39 const String INTERFACE_MEMBERS = 'interfaceMembers'; | 39 const String INTERFACE_MEMBERS = 'interfaceMembers'; |
| 40 const String INTERFACES = 'interfaces'; | 40 const String INTERFACES = 'interfaces'; |
| 41 const String IS_ABSTRACT = 'isAbstract'; | 41 const String IS_ABSTRACT = 'isAbstract'; |
| 42 const String IS_DEPRECATED = 'isDeprecated'; | 42 const String IS_DEPRECATED = 'isDeprecated'; |
| 43 const String IS_POTENTIAL = 'isPotential'; | 43 const String IS_POTENTIAL = 'isPotential'; |
| 44 const String IS_STATIC = 'isStatic'; | 44 const String IS_STATIC = 'isStatic'; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 const String START_COLUMN = 'startColumn'; | 81 const String START_COLUMN = 'startColumn'; |
| 82 const String START_LINE = 'startLine'; | 82 const String START_LINE = 'startLine'; |
| 83 const String STATIC_TYPE = 'staticType'; | 83 const String STATIC_TYPE = 'staticType'; |
| 84 const String SUBCLASSES = 'subclasses'; | 84 const String SUBCLASSES = 'subclasses'; |
| 85 const String SUBSCRIPTIONS = 'subscriptions'; | 85 const String SUBSCRIPTIONS = 'subscriptions'; |
| 86 const String SUPERCLASS = 'superclass'; | 86 const String SUPERCLASS = 'superclass'; |
| 87 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 87 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 88 const String TARGETS = 'targets'; | 88 const String TARGETS = 'targets'; |
| 89 const String TYPE = 'type'; | 89 const String TYPE = 'type'; |
| 90 const String VERSION = 'version'; | 90 const String VERSION = 'version'; |
| OLD | NEW |