| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library services.constants; | |
| 6 | |
| 7 // | |
| 8 // Property names | |
| 9 // | |
| 10 const String ADD = 'add'; | |
| 11 const String ADDED = 'added'; | |
| 12 const String CHANGE = 'change'; | |
| 13 const String CHILDREN = 'children'; | |
| 14 const String CLASS_ELEMENT = 'classElement'; | |
| 15 const String CLASS_NAME = 'className'; | |
| 16 const String COMPLETION = 'completion'; | |
| 17 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; | |
| 18 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; | |
| 19 const String CONTENT = 'content'; | |
| 20 const String CORRECTION = 'correction'; | |
| 21 const String DART_DOC = 'dartdoc'; | |
| 22 const String DEFAULT = 'default'; | |
| 23 const String DISPLAY_NAME = 'displayName'; | |
| 24 const String EDITS = 'edits'; | |
| 25 const String ELEMENT = 'element'; | |
| 26 const String ELEMENT_DESCRIPTION = 'elementDescription'; | |
| 27 const String ELEMENT_KIND = 'elementKind'; | |
| 28 const String EXCLUDED = 'excluded'; | |
| 29 const String ERROR = 'error'; | |
| 30 const String ERRORS = 'errors'; | |
| 31 const String FATAL = 'fatal'; | |
| 32 const String FILE = 'file'; | |
| 33 const String FILES = 'files'; | |
| 34 const String FIXES = 'fixes'; | |
| 35 const String FLAGS = 'flags'; | |
| 36 const String HIERARCHY_ITEMS = 'hierarchyItems'; | |
| 37 const String HOVERS = 'hovers'; | |
| 38 const String ID = 'id'; | |
| 39 const String INCLUDE_POTENTIAL = 'includePotential'; | |
| 40 const String INCLUDED = 'included'; | |
| 41 const String INTERFACE_MEMBERS = 'interfaceMembers'; | |
| 42 const String INTERFACES = 'interfaces'; | |
| 43 const String IS_ABSTRACT = 'isAbstract'; | |
| 44 const String IS_DEPRECATED = 'isDeprecated'; | |
| 45 const String IS_POTENTIAL = 'isPotential'; | |
| 46 const String IS_STATIC = 'isStatic'; | |
| 47 const String KIND = 'kind'; | |
| 48 const String KINDS = 'kinds'; | |
| 49 const String LAST = 'last'; | |
| 50 const String LENGTH = 'length'; | |
| 51 const String LINKED_EDIT_GROUPS = 'linkedEditGroups'; | |
| 52 const String LOCATION = 'location'; | |
| 53 const String MEMBER_ELEMENT = 'memberElement'; | |
| 54 const String MESSAGE = 'message'; | |
| 55 const String MIXINS = 'mixins'; | |
| 56 const String NAME = 'name'; | |
| 57 const String OCCURRENCES = 'occurrences'; | |
| 58 const String OFFSET = 'offset'; | |
| 59 const String OFFSETS = 'offsets'; | |
| 60 const String OPTIONS = 'options'; | |
| 61 const String OUTLINE = 'outline'; | |
| 62 const String OVERRIDES = 'overrides'; | |
| 63 const String PARAMETER = 'parameter'; | |
| 64 const String PARAMETERS = 'parameters'; | |
| 65 const String PATH = 'path'; | |
| 66 const String PATTERN = 'pattern'; | |
| 67 const String POSITIONS = 'positions'; | |
| 68 const String PROPAGATED_TYPE = 'propagatedType'; | |
| 69 const String REFACTORINGS = 'refactorings'; | |
| 70 const String REGIONS = 'regions'; | |
| 71 const String RELEVANCE = 'relevance'; | |
| 72 const String REMOVE = 'remove'; | |
| 73 const String REMOVED = 'removed'; | |
| 74 const String REPLACEMENT = 'replacement'; | |
| 75 const String REPLACEMENT_OFFSET = 'replacementOffset'; | |
| 76 const String REPLACEMENT_LENGTH = 'replacementLength'; | |
| 77 const String RETURN_TYPE = 'returnType'; | |
| 78 const String RESULTS = 'results'; | |
| 79 const String SELECTION = 'selection'; | |
| 80 const String SEVERITY = 'severity'; | |
| 81 const String SELECTION_LENGTH = 'selectionLength'; | |
| 82 const String SELECTION_OFFSET = 'selectionOffset'; | |
| 83 const String STACK_TRACE = 'stackTrace'; | |
| 84 const String START_COLUMN = 'startColumn'; | |
| 85 const String START_LINE = 'startLine'; | |
| 86 const String STATIC_TYPE = 'staticType'; | |
| 87 const String SUBCLASSES = 'subclasses'; | |
| 88 const String SUBSCRIPTIONS = 'subscriptions'; | |
| 89 const String SUGGESTIONS = 'suggestions'; | |
| 90 const String SUPERCLASS = 'superclass'; | |
| 91 const String SUPER_CLASS_MEMBER = 'superclassMember'; | |
| 92 const String TARGETS = 'targets'; | |
| 93 const String TYPE = 'type'; | |
| 94 const String VALUE = 'value'; | |
| 95 const String VERSION = 'version'; | |
| OLD | NEW |