| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 const String EXECUTION_SET_SUBSCRIPTIONS = 'execution.setSubscriptions'; | 83 const String EXECUTION_SET_SUBSCRIPTIONS = 'execution.setSubscriptions'; |
| 84 | 84 |
| 85 // | 85 // |
| 86 // Execution notifications | 86 // Execution notifications |
| 87 // | 87 // |
| 88 const String EXECUTION_LAUNCH_DATA = 'execution.launchData'; | 88 const String EXECUTION_LAUNCH_DATA = 'execution.launchData'; |
| 89 | 89 |
| 90 // | 90 // |
| 91 // Analysis option names | 91 // Analysis option names |
| 92 // | 92 // |
| 93 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean | |
| 94 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean | |
| 95 const String ENABLE_ASYNC = 'enableAsync'; // boolean | 93 const String ENABLE_ASYNC = 'enableAsync'; // boolean |
| 96 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean | 94 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean |
| 97 const String ENABLE_ENUMS = 'enableEnums'; // boolean | 95 const String ENABLE_ENUMS = 'enableEnums'; // boolean |
| 98 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean | 96 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean |
| 99 const String GENERATE_HINTS = 'generateHints'; // boolean | 97 const String GENERATE_HINTS = 'generateHints'; // boolean |
| 100 | 98 |
| 101 // | 99 // |
| 102 // Property names | 100 // Property names |
| 103 // | 101 // |
| 104 const String ADD = 'add'; | 102 const String ADD = 'add'; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 const String STATIC_TYPE = 'staticType'; | 181 const String STATIC_TYPE = 'staticType'; |
| 184 const String SUBCLASSES = 'subclasses'; | 182 const String SUBCLASSES = 'subclasses'; |
| 185 const String SUBSCRIPTIONS = 'subscriptions'; | 183 const String SUBSCRIPTIONS = 'subscriptions'; |
| 186 const String SUGGESTIONS = 'suggestions'; | 184 const String SUGGESTIONS = 'suggestions'; |
| 187 const String SUPERCLASS = 'superclass'; | 185 const String SUPERCLASS = 'superclass'; |
| 188 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 186 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 189 const String TARGETS = 'targets'; | 187 const String TARGETS = 'targets'; |
| 190 const String TYPE = 'type'; | 188 const String TYPE = 'type'; |
| 191 const String VALUE = 'value'; | 189 const String VALUE = 'value'; |
| 192 const String VERSION = 'version'; | 190 const String VERSION = 'version'; |
| OLD | NEW |