| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 const String PARAMETERS = 'parameters'; | 62 const String PARAMETERS = 'parameters'; |
| 63 const String PATH = 'path'; | 63 const String PATH = 'path'; |
| 64 const String PATTERN = 'pattern'; | 64 const String PATTERN = 'pattern'; |
| 65 const String POSITIONS = 'positions'; | 65 const String POSITIONS = 'positions'; |
| 66 const String PROPAGATED_TYPE = 'propagatedType'; | 66 const String PROPAGATED_TYPE = 'propagatedType'; |
| 67 const String REFACTORINGS = 'refactorings'; | 67 const String REFACTORINGS = 'refactorings'; |
| 68 const String REGIONS = 'regions'; | 68 const String REGIONS = 'regions'; |
| 69 const String RELEVANCE = 'relevance'; | 69 const String RELEVANCE = 'relevance'; |
| 70 const String REMOVED = 'removed'; | 70 const String REMOVED = 'removed'; |
| 71 const String REPLACEMENT = 'relacement'; | 71 const String REPLACEMENT = 'relacement'; |
| 72 const String REPLACEMENT_OFFSET = 'relacementOffset'; |
| 73 const String REPLACEMENT_LENGTH = 'relacementLength'; |
| 72 const String RETURN_TYPE = 'returnType'; | 74 const String RETURN_TYPE = 'returnType'; |
| 73 const String RESULTS = 'results'; | 75 const String RESULTS = 'results'; |
| 74 const String SEVERITY = 'severity'; | 76 const String SEVERITY = 'severity'; |
| 75 const String SELECTION_LENGTH = 'selectionLength'; | 77 const String SELECTION_LENGTH = 'selectionLength'; |
| 76 const String SELECTION_OFFSET = 'selectionOffset'; | 78 const String SELECTION_OFFSET = 'selectionOffset'; |
| 77 const String STACK_TRACE = 'stackTrace'; | 79 const String STACK_TRACE = 'stackTrace'; |
| 78 const String START_COLUMN = 'startColumn'; | 80 const String START_COLUMN = 'startColumn'; |
| 79 const String START_LINE = 'startLine'; | 81 const String START_LINE = 'startLine'; |
| 80 const String STATIC_TYPE = 'staticType'; | 82 const String STATIC_TYPE = 'staticType'; |
| 81 const String SUBCLASSES = 'subclasses'; | 83 const String SUBCLASSES = 'subclasses'; |
| 82 const String SUBSCRIPTIONS = 'subscriptions'; | 84 const String SUBSCRIPTIONS = 'subscriptions'; |
| 83 const String SUPERCLASS = 'superclass'; | 85 const String SUPERCLASS = 'superclass'; |
| 84 const String SUPER_CLASS_ELEMENT = 'superclassElement'; | 86 const String SUPER_CLASS_ELEMENT = 'superclassElement'; |
| 85 const String TARGETS = 'targets'; | 87 const String TARGETS = 'targets'; |
| 86 const String TYPE = 'type'; | 88 const String TYPE = 'type'; |
| 87 const String VERSION = 'version'; | 89 const String VERSION = 'version'; |
| OLD | NEW |