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

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

Issue 1368793003: The 'analysis.implemented' notification implementation. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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
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 23 matching lines...) Expand all
34 const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions'; 34 const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions';
35 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent'; 35 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent';
36 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions'; 36 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions';
37 37
38 // 38 //
39 // Analysis notifications 39 // Analysis notifications
40 // 40 //
41 const String ANALYSIS_ANALYZED_FILES = 'analysis.analyzedFiles'; 41 const String ANALYSIS_ANALYZED_FILES = 'analysis.analyzedFiles';
42 const String ANALYSIS_ERRORS = 'analysis.errors'; 42 const String ANALYSIS_ERRORS = 'analysis.errors';
43 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights'; 43 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights';
44 const String ANALYSIS_IMPLEMENTED = 'analysis.implemented';
44 const String ANALYSIS_NAVIGATION = 'analysis.navigation'; 45 const String ANALYSIS_NAVIGATION = 'analysis.navigation';
45 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences'; 46 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences';
46 const String ANALYSIS_OUTLINE = 'analysis.outline'; 47 const String ANALYSIS_OUTLINE = 'analysis.outline';
47 const String ANALYSIS_OVERRIDES = 'analysis.overrides'; 48 const String ANALYSIS_OVERRIDES = 'analysis.overrides';
48 49
49 // 50 //
50 // Code Completion methods 51 // Code Completion methods
51 // 52 //
52 const String COMPLETION_GET_SUGGESTIONS = 'completion.getSuggestions'; 53 const String COMPLETION_GET_SUGGESTIONS = 'completion.getSuggestions';
53 54
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 const String STATIC_TYPE = 'staticType'; 190 const String STATIC_TYPE = 'staticType';
190 const String SUBCLASSES = 'subclasses'; 191 const String SUBCLASSES = 'subclasses';
191 const String SUBSCRIPTIONS = 'subscriptions'; 192 const String SUBSCRIPTIONS = 'subscriptions';
192 const String SUGGESTIONS = 'suggestions'; 193 const String SUGGESTIONS = 'suggestions';
193 const String SUPERCLASS = 'superclass'; 194 const String SUPERCLASS = 'superclass';
194 const String SUPER_CLASS_MEMBER = 'superclassMember'; 195 const String SUPER_CLASS_MEMBER = 'superclassMember';
195 const String TARGETS = 'targets'; 196 const String TARGETS = 'targets';
196 const String TYPE = 'type'; 197 const String TYPE = 'type';
197 const String VALUE = 'value'; 198 const String VALUE = 'value';
198 const String VERSION = 'version'; 199 const String VERSION = 'version';
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analysis_server/lib/src/domains/analysis/implemented_dart.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698