Chromium Code Reviews| 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 service.constants; | |
|
scheglov
2014/07/20 19:09:56
"services." ?
danrubel
2014/07/21 12:54:14
Done.
| |
| 6 | |
| 7 // | |
| 8 // Property names | |
| 9 // | |
| 10 const String ADDED = 'added'; | |
| 11 const String CHILDREN = 'children'; | |
| 12 const String COMPLETION = 'completion'; | |
| 13 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; | |
| 14 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; | |
| 15 const String CONTENT = 'content'; | |
| 16 const String CORRECTION = 'correction'; | |
| 17 const String DART_DOC = 'dartdoc'; | |
| 18 const String DEFAULT = 'default'; | |
| 19 const String ELEMENT = 'element'; | |
| 20 const String ELEMENT_DESCRIPTION = 'elementDescription'; | |
| 21 const String ELEMENT_KIND = 'elementKind'; | |
| 22 const String EXCLUDED = 'excluded'; | |
| 23 const String ERRORS = 'errors'; | |
| 24 const String FILE = 'file'; | |
| 25 const String FILES = 'files'; | |
| 26 const String FIXES = 'fixes'; | |
| 27 const String FLAGS = 'flags'; | |
| 28 const String HOVERS = 'hovers'; | |
| 29 const String ID = 'id'; | |
| 30 const String INCLUDE_POTENTIAL = 'includePotential'; | |
| 31 const String INCLUDED = 'included'; | |
| 32 const String INTERFACE_ELEMENTS = 'interfaceElements'; | |
| 33 const String IS_ABSTRACT = 'isAbstract'; | |
| 34 const String IS_DEPRECATED = 'isDeprecated'; | |
| 35 const String IS_POTENTIAL = 'isPotential'; | |
| 36 const String IS_STATIC = 'isStatic'; | |
| 37 const String KIND = 'kind'; | |
| 38 const String LAST = 'last'; | |
| 39 const String LENGTH = 'length'; | |
| 40 const String LOCATION = 'location'; | |
| 41 const String MESSAGE = 'message'; | |
| 42 const String NAME = 'name'; | |
| 43 const String NEW_LENGTH = 'newLength'; | |
| 44 const String OCCURRENCES = 'occurrences'; | |
| 45 const String OFFSET = 'offset'; | |
| 46 const String OFFSETS = 'offsets'; | |
| 47 const String OLD_LENGTH = 'oldLength'; | |
| 48 const String OPTIONS = 'options'; | |
| 49 const String OUTLINE = 'outline'; | |
| 50 const String OVERRIDES = 'overrides'; | |
| 51 const String PARAMETER = 'parameter'; | |
| 52 const String PARAMETERS = 'parameters'; | |
| 53 const String PATH = 'path'; | |
| 54 const String PATTERN = 'pattern'; | |
| 55 const String PROPAGATED_TYPE = 'propagatedType'; | |
| 56 const String REFACTORINGS = 'refactorings'; | |
| 57 const String REGIONS = 'regions'; | |
| 58 const String RELEVANCE = 'relevance'; | |
| 59 const String REMOVED = 'removed'; | |
| 60 const String RETURN_TYPE = 'returnType'; | |
| 61 const String RESULTS = 'results'; | |
| 62 const String SEVERITY = 'severity'; | |
| 63 const String SELECTION_LENGTH = 'selectionLength'; | |
| 64 const String SELECTION_OFFSET = 'selectionOffset'; | |
| 65 const String START_COLUMN = 'startColumn'; | |
| 66 const String START_LINE = 'startLine'; | |
| 67 const String STATIC_TYPE = 'staticType'; | |
| 68 const String SUBSCRIPTIONS = 'subscriptions'; | |
| 69 const String SUPER_CLASS_ELEMENT = 'superclassElement'; | |
| 70 const String TARGETS = 'targets'; | |
| 71 const String TYPE = 'type'; | |
| 72 const String VERSION = 'version'; | |
| OLD | NEW |