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

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

Issue 392693002: Initial implementation for 'search.findElementReferences'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add comments Created 6 years, 5 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 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
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'; 92 const String ERROR_CODE = 'errorCode';
93 const String ERRORS = 'errors'; 93 const String ERRORS = 'errors';
94 const String FILE = 'file'; 94 const String FILE = 'file';
95 const String FILES = 'files'; 95 const String FILES = 'files';
96 const String FIXES = 'fixes'; 96 const String FIXES = 'fixes';
97 const String FLAGS = 'flags'; 97 const String FLAGS = 'flags';
98 const String HOVERS = 'hovers'; 98 const String HOVERS = 'hovers';
99 const String ID = 'id'; 99 const String ID = 'id';
100 const String INCLUDE_POTENTIAL = 'includePotential';
100 const String INCLUDED = 'included'; 101 const String INCLUDED = 'included';
101 const String INTERFACE_ELEMENTS = 'interfaceElements'; 102 const String INTERFACE_ELEMENTS = 'interfaceElements';
102 const String IS_ABSTRACT = 'isAbstract'; 103 const String IS_ABSTRACT = 'isAbstract';
104 const String IS_POTENTIAL = 'isPotential';
103 const String IS_STATIC = 'isStatic'; 105 const String IS_STATIC = 'isStatic';
104 const String KIND = 'kind'; 106 const String KIND = 'kind';
107 const String LAST = 'last';
105 const String LENGTH = 'length'; 108 const String LENGTH = 'length';
106 const String LOCATION = 'location'; 109 const String LOCATION = 'location';
107 const String MESSAGE = 'message'; 110 const String MESSAGE = 'message';
108 const String NAME = 'name'; 111 const String NAME = 'name';
109 const String NEW_LENGTH = 'newLength'; 112 const String NEW_LENGTH = 'newLength';
110 const String OCCURRENCES = 'occurrences'; 113 const String OCCURRENCES = 'occurrences';
111 const String OFFSET = 'offset'; 114 const String OFFSET = 'offset';
112 const String OFFSETS = 'offsets'; 115 const String OFFSETS = 'offsets';
113 const String OLD_LENGTH = 'oldLength'; 116 const String OLD_LENGTH = 'oldLength';
114 const String OPTIONS = 'options'; 117 const String OPTIONS = 'options';
115 const String OUTLINE = 'outline'; 118 const String OUTLINE = 'outline';
116 const String OVERRIDES = 'overrides'; 119 const String OVERRIDES = 'overrides';
117 const String PARAMETER = 'parameter'; 120 const String PARAMETER = 'parameter';
118 const String PARAMETERS = 'parameters'; 121 const String PARAMETERS = 'parameters';
122 const String PATH = 'path';
119 const String PATTERN = 'pattern'; 123 const String PATTERN = 'pattern';
120 const String PROPAGATED_TYPE = 'propagatedType'; 124 const String PROPAGATED_TYPE = 'propagatedType';
121 const String REFACTORINGS = 'refactorings'; 125 const String REFACTORINGS = 'refactorings';
122 const String REGIONS = 'regions'; 126 const String REGIONS = 'regions';
123 const String REMOVED = 'removed'; 127 const String REMOVED = 'removed';
124 const String RETURN_TYPE = 'returnType'; 128 const String RETURN_TYPE = 'returnType';
129 const String RESULTS = 'results';
125 const String SEVERITY = 'severity'; 130 const String SEVERITY = 'severity';
126 const String START_COLUMN = 'startColumn'; 131 const String START_COLUMN = 'startColumn';
127 const String START_LINE = 'startLine'; 132 const String START_LINE = 'startLine';
128 const String STATIC_TYPE = 'staticType'; 133 const String STATIC_TYPE = 'staticType';
129 const String SUBSCRIPTIONS = 'subscriptions'; 134 const String SUBSCRIPTIONS = 'subscriptions';
130 const String SUPER_CLASS_ELEMENT = 'superclassElement'; 135 const String SUPER_CLASS_ELEMENT = 'superclassElement';
131 const String TARGETS = 'targets'; 136 const String TARGETS = 'targets';
132 const String TYPE = 'type'; 137 const String TYPE = 'type';
133 const String VERSION = 'version'; 138 const String VERSION = 'version';
134 139
135 // 140 //
136 // Analysis option names 141 // Analysis option names
137 // 142 //
138 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean 143 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean
139 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean 144 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean
140 const String ENABLE_ASYNC = 'enableAsync'; // boolean 145 const String ENABLE_ASYNC = 'enableAsync'; // boolean
141 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean 146 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean
142 const String ENABLE_ENUMS = 'enableEnums'; // boolean 147 const String ENABLE_ENUMS = 'enableEnums'; // boolean
143 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean 148 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean
144 const String GENERATE_HINTS = 'generateHints'; // boolean 149 const String GENERATE_HINTS = 'generateHints'; // boolean
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/computer/element.dart ('k') | pkg/analysis_server/lib/src/domain_search.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698