| 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 constants; | 5 library 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 17 matching lines...) Expand all Loading... |
| 28 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent'; | 28 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent'; |
| 29 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions'; | 29 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions'; |
| 30 const String ANALYSIS_UPDATE_SDKS = 'analysis.updateSdks'; | 30 const String ANALYSIS_UPDATE_SDKS = 'analysis.updateSdks'; |
| 31 | 31 |
| 32 // | 32 // |
| 33 // Analysis notifications | 33 // Analysis notifications |
| 34 // | 34 // |
| 35 const String ANALYSIS_ERRORS = 'analysis.errors'; | 35 const String ANALYSIS_ERRORS = 'analysis.errors'; |
| 36 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights'; | 36 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights'; |
| 37 const String ANALYSIS_NAVIGATION = 'analysis.navigation'; | 37 const String ANALYSIS_NAVIGATION = 'analysis.navigation'; |
| 38 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences'; |
| 38 const String ANALYSIS_OUTLINE = 'analysis.outline'; | 39 const String ANALYSIS_OUTLINE = 'analysis.outline'; |
| 40 const String ANALYSIS_OVERRIDES = 'analysis.overrides'; |
| 39 | 41 |
| 40 // | 42 // |
| 41 // Code Completion methods | 43 // Code Completion methods |
| 42 // | 44 // |
| 43 const String COMPLETION_GET_SUGGESTIONS = 'completion.getSuggestions'; | 45 const String COMPLETION_GET_SUGGESTIONS = 'completion.getSuggestions'; |
| 44 | 46 |
| 45 // | 47 // |
| 46 // Code Completion notifications | 48 // Code Completion notifications |
| 47 // | 49 // |
| 48 const String COMPLETION_RESULTS = 'completion.results'; | 50 const String COMPLETION_RESULTS = 'completion.results'; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 const String ID = 'id'; | 98 const String ID = 'id'; |
| 97 const String INCLUDED = 'included'; | 99 const String INCLUDED = 'included'; |
| 98 const String IS_ABSTRACT = 'isAbstract'; | 100 const String IS_ABSTRACT = 'isAbstract'; |
| 99 const String IS_STATIC = 'isStatic'; | 101 const String IS_STATIC = 'isStatic'; |
| 100 const String KIND = 'kind'; | 102 const String KIND = 'kind'; |
| 101 const String LENGTH = 'length'; | 103 const String LENGTH = 'length'; |
| 102 const String LOCATION = 'location'; | 104 const String LOCATION = 'location'; |
| 103 const String MESSAGE = 'message'; | 105 const String MESSAGE = 'message'; |
| 104 const String NAME = 'name'; | 106 const String NAME = 'name'; |
| 105 const String NEW_LENGTH = 'newLength'; | 107 const String NEW_LENGTH = 'newLength'; |
| 108 const String OCCURRENCES = 'occurrences'; |
| 106 const String OFFSET = 'offset'; | 109 const String OFFSET = 'offset'; |
| 110 const String OFFSETS = 'offsets'; |
| 107 const String OLD_LENGTH = 'oldLength'; | 111 const String OLD_LENGTH = 'oldLength'; |
| 108 const String OPTIONS = 'options'; | 112 const String OPTIONS = 'options'; |
| 109 const String OUTLINE = 'outline'; | 113 const String OUTLINE = 'outline'; |
| 110 const String PARAMETER = 'parameter'; | 114 const String PARAMETER = 'parameter'; |
| 111 const String PARAMETERS = 'parameters'; | 115 const String PARAMETERS = 'parameters'; |
| 112 const String PATTERN = 'pattern'; | 116 const String PATTERN = 'pattern'; |
| 113 const String PROPAGATED_TYPE = 'propagatedType'; | 117 const String PROPAGATED_TYPE = 'propagatedType'; |
| 114 const String REFACTORINGS = 'refactorings'; | 118 const String REFACTORINGS = 'refactorings'; |
| 115 const String REGIONS = 'regions'; | 119 const String REGIONS = 'regions'; |
| 116 const String REMOVED = 'removed'; | 120 const String REMOVED = 'removed'; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 127 // | 131 // |
| 128 // Analysis option names | 132 // Analysis option names |
| 129 // | 133 // |
| 130 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean | 134 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean |
| 131 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean | 135 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean |
| 132 const String ENABLE_ASYNC = 'enableAsync'; // boolean | 136 const String ENABLE_ASYNC = 'enableAsync'; // boolean |
| 133 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean | 137 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean |
| 134 const String ENABLE_ENUMS = 'enableEnums'; // boolean | 138 const String ENABLE_ENUMS = 'enableEnums'; // boolean |
| 135 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean | 139 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean |
| 136 const String GENERATE_HINTS = 'generateHints'; // boolean | 140 const String GENERATE_HINTS = 'generateHints'; // boolean |
| OLD | NEW |