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

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

Issue 1232393005: Add notification of analyzed files (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 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
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 10 matching lines...) Expand all
21 // 21 //
22 // Analysis methods 22 // Analysis methods
23 // 23 //
24 const String ANALYSIS_GET_ERRORS = 'analysis.getErrors'; 24 const String ANALYSIS_GET_ERRORS = 'analysis.getErrors';
25 const String ANALYSIS_GET_HOVER = 'analysis.getHover'; 25 const String ANALYSIS_GET_HOVER = 'analysis.getHover';
26 const String ANALYSIS_GET_LIBRARY_DEPENDENCIES = 26 const String ANALYSIS_GET_LIBRARY_DEPENDENCIES =
27 'analysis.getLibraryDependencies'; 27 'analysis.getLibraryDependencies';
28 const String ANALYSIS_GET_NAVIGATION = 'analysis.getNavigation'; 28 const String ANALYSIS_GET_NAVIGATION = 'analysis.getNavigation';
29 const String ANALYSIS_REANALYZE = 'analysis.reanalyze'; 29 const String ANALYSIS_REANALYZE = 'analysis.reanalyze';
30 const String ANALYSIS_SET_ANALYSIS_ROOTS = 'analysis.setAnalysisRoots'; 30 const String ANALYSIS_SET_ANALYSIS_ROOTS = 'analysis.setAnalysisRoots';
31 const String ANALYSIS_SET_GENERAL_SUBSCRIPTIONS =
32 'analysis.setGeneralSubscriptions';
31 const String ANALYSIS_SET_PRIORITY_FILES = 'analysis.setPriorityFiles'; 33 const String ANALYSIS_SET_PRIORITY_FILES = 'analysis.setPriorityFiles';
32 const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions'; 34 const String ANALYSIS_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions';
33 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent'; 35 const String ANALYSIS_UPDATE_CONTENT = 'analysis.updateContent';
34 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions'; 36 const String ANALYSIS_UPDATE_OPTIONS = 'analysis.updateOptions';
35 37
36 // 38 //
37 // Analysis notifications 39 // Analysis notifications
38 // 40 //
41 const String ANALYSIS_ANALYZED_FILES = 'analysis.analyzedFiles';
39 const String ANALYSIS_ERRORS = 'analysis.errors'; 42 const String ANALYSIS_ERRORS = 'analysis.errors';
40 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights'; 43 const String ANALYSIS_HIGHLIGHTS = 'analysis.highlights';
41 const String ANALYSIS_NAVIGATION = 'analysis.navigation'; 44 const String ANALYSIS_NAVIGATION = 'analysis.navigation';
42 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences'; 45 const String ANALYSIS_OCCURRENCES = 'analysis.occurrences';
43 const String ANALYSIS_OUTLINE = 'analysis.outline'; 46 const String ANALYSIS_OUTLINE = 'analysis.outline';
44 const String ANALYSIS_OVERRIDES = 'analysis.overrides'; 47 const String ANALYSIS_OVERRIDES = 'analysis.overrides';
45 48
46 // 49 //
47 // Code Completion methods 50 // Code Completion methods
48 // 51 //
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 const String STATIC_TYPE = 'staticType'; 188 const String STATIC_TYPE = 'staticType';
186 const String SUBCLASSES = 'subclasses'; 189 const String SUBCLASSES = 'subclasses';
187 const String SUBSCRIPTIONS = 'subscriptions'; 190 const String SUBSCRIPTIONS = 'subscriptions';
188 const String SUGGESTIONS = 'suggestions'; 191 const String SUGGESTIONS = 'suggestions';
189 const String SUPERCLASS = 'superclass'; 192 const String SUPERCLASS = 'superclass';
190 const String SUPER_CLASS_MEMBER = 'superclassMember'; 193 const String SUPER_CLASS_MEMBER = 'superclassMember';
191 const String TARGETS = 'targets'; 194 const String TARGETS = 'targets';
192 const String TYPE = 'type'; 195 const String TYPE = 'type';
193 const String VALUE = 'value'; 196 const String VALUE = 'value';
194 const String VERSION = 'version'; 197 const String VERSION = 'version';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698