Chromium Code Reviews| 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 12 matching lines...) Expand all Loading... | |
| 23 // | 23 // |
| 24 const String ANALYSIS_GET_ERRORS = 'analysis.getErrors'; | 24 const String ANALYSIS_GET_ERRORS = 'analysis.getErrors'; |
| 25 const String ANALYSIS_GET_HOVER = 'analysis.getHover'; | 25 const String ANALYSIS_GET_HOVER = 'analysis.getHover'; |
| 26 const String ANALYSIS_SET_ANALYSIS_ROOTS = 'analysis.setAnalysisRoots'; | 26 const String ANALYSIS_SET_ANALYSIS_ROOTS = 'analysis.setAnalysisRoots'; |
| 27 const String ANALYSIS_SET_PRIORITY_FILES = 'analysis.setPriorityFiles'; | 27 const String ANALYSIS_SET_PRIORITY_FILES = 'analysis.setPriorityFiles'; |
| 28 const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions'; | 28 const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions'; |
| 29 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent'; | 29 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent'; |
| 30 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions'; | 30 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions'; |
| 31 | 31 |
| 32 // | 32 // |
| 33 // Analysis values | |
| 34 // | |
| 35 const String ANALYSIS_OVERLAY_ADD = 'add'; | |
|
Brian Wilkerson
2014/08/11 20:17:52
"ANALYSIS" --> "CONTENT" ?
scheglov
2014/08/11 20:22:18
Actually, that's not what we are doing everywhere
| |
| 36 const String ANALYSIS_OVERLAY_CHANGE = 'change'; | |
| 37 const String ANALYSIS_OVERLAY_REMOVE = 'remove'; | |
| 38 | |
| 39 | |
| 40 // | |
| 33 // Analysis notifications | 41 // Analysis notifications |
| 34 // | 42 // |
| 35 const String ANALYSIS_ERRORS = 'analysis.errors'; | 43 const String ANALYSIS_ERRORS = 'analysis.errors'; |
| 36 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights'; | 44 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights'; |
| 37 const String ANALYSIS_NAVIGATION = 'analysis.navigation'; | 45 const String ANALYSIS_NAVIGATION = 'analysis.navigation'; |
| 38 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences'; | 46 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences'; |
| 39 const String ANALYSIS_OUTLINE = 'analysis.outline'; | 47 const String ANALYSIS_OUTLINE = 'analysis.outline'; |
| 40 const String ANALYSIS_OVERRIDES = 'analysis.overrides'; | 48 const String ANALYSIS_OVERRIDES = 'analysis.overrides'; |
| 41 | 49 |
| 42 // | 50 // |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 78 // | 86 // |
| 79 // Analysis option names | 87 // Analysis option names |
| 80 // | 88 // |
| 81 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean | 89 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean |
| 82 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean | 90 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean |
| 83 const String ENABLE_ASYNC = 'enableAsync'; // boolean | 91 const String ENABLE_ASYNC = 'enableAsync'; // boolean |
| 84 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean | 92 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean |
| 85 const String ENABLE_ENUMS = 'enableEnums'; // boolean | 93 const String ENABLE_ENUMS = 'enableEnums'; // boolean |
| 86 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean | 94 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean |
| 87 const String GENERATE_HINTS = 'generateHints'; // boolean | 95 const String GENERATE_HINTS = 'generateHints'; // boolean |
| OLD | NEW |