| 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'; |
| 11 const String CHILDREN = 'children'; | 11 const String CHILDREN = 'children'; |
| 12 const String CLASS_ELEMENT = 'classElement'; | 12 const String CLASS_ELEMENT = 'classElement'; |
| 13 const String CLASS_NAME = 'className'; |
| 13 const String COMPLETION = 'completion'; | 14 const String COMPLETION = 'completion'; |
| 14 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; | 15 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; |
| 15 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; | 16 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; |
| 16 const String CONTENT = 'content'; | 17 const String CONTENT = 'content'; |
| 17 const String CORRECTION = 'correction'; | 18 const String CORRECTION = 'correction'; |
| 18 const String DART_DOC = 'dartdoc'; | 19 const String DART_DOC = 'dartdoc'; |
| 19 const String DEFAULT = 'default'; | 20 const String DEFAULT = 'default'; |
| 20 const String DISPLAY_NAME = 'displayName'; | 21 const String DISPLAY_NAME = 'displayName'; |
| 21 const String EDITS = 'edits'; | 22 const String EDITS = 'edits'; |
| 22 const String ELEMENT = 'element'; | 23 const String ELEMENT = 'element'; |
| 23 const String ELEMENT_DESCRIPTION = 'elementDescription'; | 24 const String ELEMENT_DESCRIPTION = 'elementDescription'; |
| 24 const String ELEMENT_KIND = 'elementKind'; | 25 const String ELEMENT_KIND = 'elementKind'; |
| 25 const String EXCLUDED = 'excluded'; | 26 const String EXCLUDED = 'excluded'; |
| 26 const String ERROR = 'error'; | 27 const String ERROR = 'error'; |
| 27 const String ERRORS = 'errors'; | 28 const String ERRORS = 'errors'; |
| 28 const String FATAL = 'fatal'; | 29 const String FATAL = 'fatal'; |
| 29 const String FILE = 'file'; | 30 const String FILE = 'file'; |
| 30 const String FILES = 'files'; | 31 const String FILES = 'files'; |
| 31 const String FIXES = 'fixes'; | 32 const String FIXES = 'fixes'; |
| 32 const String FLAGS = 'flags'; | 33 const String FLAGS = 'flags'; |
| 33 const String HIERARCHY = 'hierarchy'; | 34 const String HIERARCHY = 'hierarchy'; |
| 34 const String HOVERS = 'hovers'; | 35 const String HOVERS = 'hovers'; |
| 35 const String ID = 'id'; | 36 const String ID = 'id'; |
| 36 const String INCLUDE_POTENTIAL = 'includePotential'; | 37 const String INCLUDE_POTENTIAL = 'includePotential'; |
| 37 const String INCLUDED = 'included'; | 38 const String INCLUDED = 'included'; |
| 38 const String INTERFACE_ELEMENTS = 'interfaceElements'; | 39 const String INTERFACE_MEMBERS = 'interfaceMembers'; |
| 39 const String INTERFACES = 'interfaces'; | 40 const String INTERFACES = 'interfaces'; |
| 40 const String IS_ABSTRACT = 'isAbstract'; | 41 const String IS_ABSTRACT = 'isAbstract'; |
| 41 const String IS_DEPRECATED = 'isDeprecated'; | 42 const String IS_DEPRECATED = 'isDeprecated'; |
| 42 const String IS_POTENTIAL = 'isPotential'; | 43 const String IS_POTENTIAL = 'isPotential'; |
| 43 const String IS_STATIC = 'isStatic'; | 44 const String IS_STATIC = 'isStatic'; |
| 44 const String KIND = 'kind'; | 45 const String KIND = 'kind'; |
| 45 const String LAST = 'last'; | 46 const String LAST = 'last'; |
| 46 const String LENGTH = 'length'; | 47 const String LENGTH = 'length'; |
| 47 const String LINKED_POSITION_GROUPS = 'linkedPositionGroups'; | 48 const String LINKED_POSITION_GROUPS = 'linkedPositionGroups'; |
| 48 const String LOCATION = 'location'; | 49 const String LOCATION = 'location'; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 76 const String SEVERITY = 'severity'; | 77 const String SEVERITY = 'severity'; |
| 77 const String SELECTION_LENGTH = 'selectionLength'; | 78 const String SELECTION_LENGTH = 'selectionLength'; |
| 78 const String SELECTION_OFFSET = 'selectionOffset'; | 79 const String SELECTION_OFFSET = 'selectionOffset'; |
| 79 const String STACK_TRACE = 'stackTrace'; | 80 const String STACK_TRACE = 'stackTrace'; |
| 80 const String START_COLUMN = 'startColumn'; | 81 const String START_COLUMN = 'startColumn'; |
| 81 const String START_LINE = 'startLine'; | 82 const String START_LINE = 'startLine'; |
| 82 const String STATIC_TYPE = 'staticType'; | 83 const String STATIC_TYPE = 'staticType'; |
| 83 const String SUBCLASSES = 'subclasses'; | 84 const String SUBCLASSES = 'subclasses'; |
| 84 const String SUBSCRIPTIONS = 'subscriptions'; | 85 const String SUBSCRIPTIONS = 'subscriptions'; |
| 85 const String SUPERCLASS = 'superclass'; | 86 const String SUPERCLASS = 'superclass'; |
| 86 const String SUPER_CLASS_ELEMENT = 'superclassElement'; | 87 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 87 const String TARGETS = 'targets'; | 88 const String TARGETS = 'targets'; |
| 88 const String TYPE = 'type'; | 89 const String TYPE = 'type'; |
| 89 const String VERSION = 'version'; | 90 const String VERSION = 'version'; |
| OLD | NEW |