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

Unified Diff: pkg/analysis_server/lib/src/constants.dart

Issue 304273007: Use 'analysis.setSubscriptions' HIGHLIGHTS in Editor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use addAnalysisSubscription/removeAnalysisSubscription Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/constants.dart
diff --git a/pkg/analysis_server/lib/src/constants.dart b/pkg/analysis_server/lib/src/constants.dart
index cc95c3efdf2334ee7f9cd406b53b066b7c82ac80..32f5d8a5e348b799264d9f318292a5f89ba6ebd1 100644
--- a/pkg/analysis_server/lib/src/constants.dart
+++ b/pkg/analysis_server/lib/src/constants.dart
@@ -8,20 +8,21 @@ library constants;
//
// Server methods
//
-const String METHOD_GET_VERSION = 'server.getVersion';
-const String METHOD_SHUTDOWN = 'server.shutdown';
+const String METHOD_GET_VERSION = 'server.getVersion';
+const String METHOD_SHUTDOWN = 'server.shutdown';
+const String METHOD_SET_SERVER_SUBSCRIPTIONS = 'server.setSubscriptions';
//
// Analysis methods
//
-const String METHOD_GET_FIXES = 'analysis.getFixes';
-const String METHOD_GET_MINOR_REFACTORINGS = 'analysis.getMinorRefactorings';
-const String METHOD_SET_ANALYSIS_ROOTS = 'analysis.setAnalysisRoots';
-const String METHOD_SET_PRIORITY_FILES = 'analysis.setPriorityFiles';
-const String METHOD_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions';
-const String METHOD_UPDATE_CONTENT = 'analysis.updateContent';
-const String METHOD_UPDATE_OPTIONS = 'analysis.updateOptions';
-const String METHOD_UPDATE_SDKS = 'analysis.updateSdks';
+const String METHOD_GET_FIXES = 'analysis.getFixes';
+const String METHOD_GET_MINOR_REFACTORINGS = 'analysis.getMinorRefactorings';
+const String METHOD_SET_ANALYSIS_ROOTS = 'analysis.setAnalysisRoots';
+const String METHOD_SET_PRIORITY_FILES = 'analysis.setPriorityFiles';
+const String METHOD_SET_ANALYSIS_SUBSCRIPTIONS = 'analysis.setSubscriptions';
+const String METHOD_UPDATE_CONTENT = 'analysis.updateContent';
+const String METHOD_UPDATE_OPTIONS = 'analysis.updateOptions';
+const String METHOD_UPDATE_SDKS = 'analysis.updateSdks';
//
// Server notifications

Powered by Google App Engine
This is Rietveld 408576698