| 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 server.constants; | 5 library server.constants; |
| 6 | 6 |
| 7 // | 7 // |
| 8 // Server methods | 8 // Server methods |
| 9 // | 9 // |
| 10 const String SERVER_GET_VERSION = 'server.getVersion'; | 10 const String SERVER_GET_VERSION = 'server.getVersion'; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions'; | 34 const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions'; |
| 35 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent'; | 35 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent'; |
| 36 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions'; | 36 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions'; |
| 37 | 37 |
| 38 // | 38 // |
| 39 // Analysis notifications | 39 // Analysis notifications |
| 40 // | 40 // |
| 41 const String ANALYSIS_ANALYZED_FILES = 'analysis.analyzedFiles'; | 41 const String ANALYSIS_ANALYZED_FILES = 'analysis.analyzedFiles'; |
| 42 const String ANALYSIS_ERRORS = 'analysis.errors'; | 42 const String ANALYSIS_ERRORS = 'analysis.errors'; |
| 43 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights'; | 43 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights'; |
| 44 const String ANALYSIS_IMPLEMENTED = 'analysis.implemented'; |
| 44 const String ANALYSIS_NAVIGATION = 'analysis.navigation'; | 45 const String ANALYSIS_NAVIGATION = 'analysis.navigation'; |
| 45 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences'; | 46 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences'; |
| 46 const String ANALYSIS_OUTLINE = 'analysis.outline'; | 47 const String ANALYSIS_OUTLINE = 'analysis.outline'; |
| 47 const String ANALYSIS_OVERRIDES = 'analysis.overrides'; | 48 const String ANALYSIS_OVERRIDES = 'analysis.overrides'; |
| 48 | 49 |
| 49 // | 50 // |
| 50 // Code Completion methods | 51 // Code Completion methods |
| 51 // | 52 // |
| 52 const String COMPLETION_GET_SUGGESTIONS = 'completion.getSuggestions'; | 53 const String COMPLETION_GET_SUGGESTIONS = 'completion.getSuggestions'; |
| 53 | 54 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 const String STATIC_TYPE = 'staticType'; | 190 const String STATIC_TYPE = 'staticType'; |
| 190 const String SUBCLASSES = 'subclasses'; | 191 const String SUBCLASSES = 'subclasses'; |
| 191 const String SUBSCRIPTIONS = 'subscriptions'; | 192 const String SUBSCRIPTIONS = 'subscriptions'; |
| 192 const String SUGGESTIONS = 'suggestions'; | 193 const String SUGGESTIONS = 'suggestions'; |
| 193 const String SUPERCLASS = 'superclass'; | 194 const String SUPERCLASS = 'superclass'; |
| 194 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 195 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 195 const String TARGETS = 'targets'; | 196 const String TARGETS = 'targets'; |
| 196 const String TYPE = 'type'; | 197 const String TYPE = 'type'; |
| 197 const String VALUE = 'value'; | 198 const String VALUE = 'value'; |
| 198 const String VERSION = 'version'; | 199 const String VERSION = 'version'; |
| OLD | NEW |