| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; | 82 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName'; |
| 83 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; | 83 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath'; |
| 84 const String CONTENT = 'content'; | 84 const String CONTENT = 'content'; |
| 85 const String CORRECTION = 'correction'; | 85 const String CORRECTION = 'correction'; |
| 86 const String DART_DOC = 'dartdoc'; | 86 const String DART_DOC = 'dartdoc'; |
| 87 const String DEFAULT = 'default'; | 87 const String DEFAULT = 'default'; |
| 88 const String ELEMENT = 'element'; | 88 const String ELEMENT = 'element'; |
| 89 const String ELEMENT_DESCRIPTION = 'elementDescription'; | 89 const String ELEMENT_DESCRIPTION = 'elementDescription'; |
| 90 const String ELEMENT_KIND = 'elementKind'; | 90 const String ELEMENT_KIND = 'elementKind'; |
| 91 const String EXCLUDED = 'excluded'; | 91 const String EXCLUDED = 'excluded'; |
| 92 const String ERROR_CODE = 'errorCode'; | |
| 93 const String ERRORS = 'errors'; | 92 const String ERRORS = 'errors'; |
| 94 const String FILE = 'file'; | 93 const String FILE = 'file'; |
| 95 const String FILES = 'files'; | 94 const String FILES = 'files'; |
| 96 const String FIXES = 'fixes'; | 95 const String FIXES = 'fixes'; |
| 97 const String FLAGS = 'flags'; | 96 const String FLAGS = 'flags'; |
| 98 const String HOVERS = 'hovers'; | 97 const String HOVERS = 'hovers'; |
| 99 const String ID = 'id'; | 98 const String ID = 'id'; |
| 100 const String INCLUDE_POTENTIAL = 'includePotential'; | 99 const String INCLUDE_POTENTIAL = 'includePotential'; |
| 101 const String INCLUDED = 'included'; | 100 const String INCLUDED = 'included'; |
| 102 const String INTERFACE_ELEMENTS = 'interfaceElements'; | 101 const String INTERFACE_ELEMENTS = 'interfaceElements'; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 // | 139 // |
| 141 // Analysis option names | 140 // Analysis option names |
| 142 // | 141 // |
| 143 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean | 142 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean |
| 144 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean | 143 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean |
| 145 const String ENABLE_ASYNC = 'enableAsync'; // boolean | 144 const String ENABLE_ASYNC = 'enableAsync'; // boolean |
| 146 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean | 145 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean |
| 147 const String ENABLE_ENUMS = 'enableEnums'; // boolean | 146 const String ENABLE_ENUMS = 'enableEnums'; // boolean |
| 148 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean | 147 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean |
| 149 const String GENERATE_HINTS = 'generateHints'; // boolean | 148 const String GENERATE_HINTS = 'generateHints'; // boolean |
| OLD | NEW |