| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 const String FILE = 'file'; | 86 const String FILE = 'file'; |
| 87 const String FILES = 'files'; | 87 const String FILES = 'files'; |
| 88 const String FIXES = 'fixes'; | 88 const String FIXES = 'fixes'; |
| 89 const String FLAGS = 'flags'; | 89 const String FLAGS = 'flags'; |
| 90 const String ID = 'id'; | 90 const String ID = 'id'; |
| 91 const String INCLUDED = 'included'; | 91 const String INCLUDED = 'included'; |
| 92 const String IS_ABSTRACT = 'isAbstract'; | 92 const String IS_ABSTRACT = 'isAbstract'; |
| 93 const String IS_STATIC = 'isStatic'; | 93 const String IS_STATIC = 'isStatic'; |
| 94 const String KIND = 'kind'; | 94 const String KIND = 'kind'; |
| 95 const String LENGTH = 'length'; | 95 const String LENGTH = 'length'; |
| 96 const String LOCATION = 'location'; |
| 96 const String MESSAGE = 'message'; | 97 const String MESSAGE = 'message'; |
| 97 const String NAME = 'name'; | 98 const String NAME = 'name'; |
| 98 const String NEW_LENGTH = 'newLength'; | 99 const String NEW_LENGTH = 'newLength'; |
| 99 const String OFFSET = 'offset'; | 100 const String OFFSET = 'offset'; |
| 100 const String OLD_LENGTH = 'oldLength'; | 101 const String OLD_LENGTH = 'oldLength'; |
| 101 const String OPTIONS = 'options'; | 102 const String OPTIONS = 'options'; |
| 102 const String OUTLINE = 'outline'; | 103 const String OUTLINE = 'outline'; |
| 103 const String PARAMETERS = 'parameters'; | 104 const String PARAMETERS = 'parameters'; |
| 104 const String PATTERN = 'pattern'; | 105 const String PATTERN = 'pattern'; |
| 105 const String REFACTORINGS = 'refactorings'; | 106 const String REFACTORINGS = 'refactorings'; |
| 106 const String REGIONS = 'regions'; | 107 const String REGIONS = 'regions'; |
| 107 const String REMOVED = 'removed'; | 108 const String REMOVED = 'removed'; |
| 108 const String RETURN_TYPE = 'returnType'; | 109 const String RETURN_TYPE = 'returnType'; |
| 110 const String SEVERITY = 'severity'; |
| 111 const String START_COLUMN = 'startColumn'; |
| 112 const String START_LINE = 'startLine'; |
| 109 const String SUBSCRIPTIONS = 'subscriptions'; | 113 const String SUBSCRIPTIONS = 'subscriptions'; |
| 110 const String TARGETS = 'targets'; | 114 const String TARGETS = 'targets'; |
| 111 const String TYPE = 'type'; | 115 const String TYPE = 'type'; |
| 112 const String VERSION = 'version'; | 116 const String VERSION = 'version'; |
| 113 | 117 |
| 114 // | 118 // |
| 115 // Analysis option names | 119 // Analysis option names |
| 116 // | 120 // |
| 117 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean | 121 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean |
| 118 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean | 122 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean |
| 119 const String ENABLE_ASYNC = 'enableAsync'; // boolean | 123 const String ENABLE_ASYNC = 'enableAsync'; // boolean |
| 120 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean | 124 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean |
| 121 const String ENABLE_ENUMS = 'enableEnums'; // boolean | 125 const String ENABLE_ENUMS = 'enableEnums'; // boolean |
| 122 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean | 126 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean |
| 123 const String GENERATE_HINTS = 'generateHints'; // boolean | 127 const String GENERATE_HINTS = 'generateHints'; // boolean |
| OLD | NEW |