Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: pkg/analysis_server/lib/src/constants.dart

Issue 478933003: Merge two constants.dart into one. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 // 76 //
77 // Analysis option names 77 // Analysis option names
78 // 78 //
79 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean 79 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean
80 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean 80 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean
81 const String ENABLE_ASYNC = 'enableAsync'; // boolean 81 const String ENABLE_ASYNC = 'enableAsync'; // boolean
82 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean 82 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean
83 const String ENABLE_ENUMS = 'enableEnums'; // boolean 83 const String ENABLE_ENUMS = 'enableEnums'; // boolean
84 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean 84 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean
85 const String GENERATE_HINTS = 'generateHints'; // boolean 85 const String GENERATE_HINTS = 'generateHints'; // boolean
86
87 //
88 // Property names
89 //
90 const String ADD = 'add';
91 const String ADDED = 'added';
92 const String ASSISTS = 'assists';
93 const String CHANGE = 'change';
94 const String CHILDREN = 'children';
95 const String CLASS_ELEMENT = 'classElement';
96 const String CLASS_NAME = 'className';
97 const String COMPLETION = 'completion';
98 const String CONTAINING_LIBRARY_NAME = 'containingLibraryName';
99 const String CONTAINING_LIBRARY_PATH = 'containingLibraryPath';
100 const String CONTENT = 'content';
101 const String CORRECTION = 'correction';
102 const String DART_DOC = 'dartdoc';
103 const String DEFAULT = 'default';
104 const String DISPLAY_NAME = 'displayName';
105 const String EDITS = 'edits';
106 const String ELEMENT = 'element';
107 const String ELEMENT_DESCRIPTION = 'elementDescription';
108 const String ELEMENT_KIND = 'elementKind';
109 const String EXCLUDED = 'excluded';
110 const String ERROR = 'error';
111 const String ERRORS = 'errors';
112 const String FATAL = 'fatal';
113 const String FILE = 'file';
114 const String FILES = 'files';
115 const String FIXES = 'fixes';
116 const String FLAGS = 'flags';
117 const String HIERARCHY_ITEMS = 'hierarchyItems';
118 const String HOVERS = 'hovers';
119 const String ID = 'id';
120 const String INCLUDE_POTENTIAL = 'includePotential';
121 const String INCLUDED = 'included';
122 const String INTERFACE_MEMBERS = 'interfaceMembers';
123 const String INTERFACES = 'interfaces';
124 const String IS_ABSTRACT = 'isAbstract';
125 const String IS_DEPRECATED = 'isDeprecated';
126 const String IS_POTENTIAL = 'isPotential';
127 const String IS_STATIC = 'isStatic';
128 const String KIND = 'kind';
129 const String KINDS = 'kinds';
130 const String LAST = 'last';
131 const String LENGTH = 'length';
132 const String LINKED_EDIT_GROUPS = 'linkedEditGroups';
133 const String LOCATION = 'location';
134 const String MEMBER_ELEMENT = 'memberElement';
135 const String MESSAGE = 'message';
136 const String MIXINS = 'mixins';
137 const String NAME = 'name';
138 const String OCCURRENCES = 'occurrences';
139 const String OFFSET = 'offset';
140 const String OFFSETS = 'offsets';
141 const String OPTIONS = 'options';
142 const String OUTLINE = 'outline';
143 const String OVERRIDES = 'overrides';
144 const String PARAMETER = 'parameter';
145 const String PARAMETERS = 'parameters';
146 const String PATH = 'path';
147 const String PATTERN = 'pattern';
148 const String POSITIONS = 'positions';
149 const String PROPAGATED_TYPE = 'propagatedType';
150 const String REFACTORINGS = 'refactorings';
151 const String REGIONS = 'regions';
152 const String RELEVANCE = 'relevance';
153 const String REMOVE = 'remove';
154 const String REMOVED = 'removed';
155 const String REPLACEMENT = 'replacement';
156 const String REPLACEMENT_OFFSET = 'replacementOffset';
157 const String REPLACEMENT_LENGTH = 'replacementLength';
158 const String RETURN_TYPE = 'returnType';
159 const String RESULTS = 'results';
160 const String SELECTION = 'selection';
161 const String SEVERITY = 'severity';
162 const String SELECTION_LENGTH = 'selectionLength';
163 const String SELECTION_OFFSET = 'selectionOffset';
164 const String STACK_TRACE = 'stackTrace';
165 const String START_COLUMN = 'startColumn';
166 const String START_LINE = 'startLine';
167 const String STATIC_TYPE = 'staticType';
168 const String SUBCLASSES = 'subclasses';
169 const String SUBSCRIPTIONS = 'subscriptions';
170 const String SUGGESTIONS = 'suggestions';
171 const String SUPERCLASS = 'superclass';
172 const String SUPER_CLASS_MEMBER = 'superclassMember';
173 const String TARGETS = 'targets';
174 const String TYPE = 'type';
175 const String VALUE = 'value';
176 const String VERSION = 'version';
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/computer/error.dart ('k') | pkg/analysis_server/lib/src/domain_analysis.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698