| 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 COMPLETION = 'completion'; | 12 const String COMPLETION = 'completion'; |
| 13 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; | 13 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; |
| 14 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; | 14 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; |
| 15 const String CONTENT = 'content'; | 15 const String CONTENT = 'content'; |
| 16 const String CORRECTION = 'correction'; | 16 const String CORRECTION = 'correction'; |
| 17 const String DART_DOC = 'dartdoc'; | 17 const String DART_DOC = 'dartdoc'; |
| 18 const String DEFAULT = 'default'; | 18 const String DEFAULT = 'default'; |
| 19 const String EDITS = 'edits'; | 19 const String EDITS = 'edits'; |
| 20 const String ELEMENT = 'element'; | 20 const String ELEMENT = 'element'; |
| 21 const String ELEMENT_DESCRIPTION = 'elementDescription'; | 21 const String ELEMENT_DESCRIPTION = 'elementDescription'; |
| 22 const String ELEMENT_KIND = 'elementKind'; | 22 const String ELEMENT_KIND = 'elementKind'; |
| 23 const String EXCLUDED = 'excluded'; | 23 const String EXCLUDED = 'excluded'; |
| 24 const String ERROR = 'error'; |
| 24 const String ERRORS = 'errors'; | 25 const String ERRORS = 'errors'; |
| 25 const String FILE = 'file'; | 26 const String FILE = 'file'; |
| 26 const String FILES = 'files'; | 27 const String FILES = 'files'; |
| 27 const String FIXES = 'fixes'; | 28 const String FIXES = 'fixes'; |
| 28 const String FLAGS = 'flags'; | 29 const String FLAGS = 'flags'; |
| 29 const String HOVERS = 'hovers'; | 30 const String HOVERS = 'hovers'; |
| 30 const String ID = 'id'; | 31 const String ID = 'id'; |
| 31 const String INCLUDE_POTENTIAL = 'includePotential'; | 32 const String INCLUDE_POTENTIAL = 'includePotential'; |
| 32 const String INCLUDED = 'included'; | 33 const String INCLUDED = 'included'; |
| 33 const String INTERFACE_ELEMENTS = 'interfaceElements'; | 34 const String INTERFACE_ELEMENTS = 'interfaceElements'; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 const String SELECTION_LENGTH = 'selectionLength'; | 68 const String SELECTION_LENGTH = 'selectionLength'; |
| 68 const String SELECTION_OFFSET = 'selectionOffset'; | 69 const String SELECTION_OFFSET = 'selectionOffset'; |
| 69 const String START_COLUMN = 'startColumn'; | 70 const String START_COLUMN = 'startColumn'; |
| 70 const String START_LINE = 'startLine'; | 71 const String START_LINE = 'startLine'; |
| 71 const String STATIC_TYPE = 'staticType'; | 72 const String STATIC_TYPE = 'staticType'; |
| 72 const String SUBSCRIPTIONS = 'subscriptions'; | 73 const String SUBSCRIPTIONS = 'subscriptions'; |
| 73 const String SUPER_CLASS_ELEMENT = 'superclassElement'; | 74 const String SUPER_CLASS_ELEMENT = 'superclassElement'; |
| 74 const String TARGETS = 'targets'; | 75 const String TARGETS = 'targets'; |
| 75 const String TYPE = 'type'; | 76 const String TYPE = 'type'; |
| 76 const String VERSION = 'version'; | 77 const String VERSION = 'version'; |
| OLD | NEW |