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

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

Issue 535333003: Clarify some of the analysis server errors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/generated_protocol.dart
diff --git a/pkg/analysis_server/lib/src/generated_protocol.dart b/pkg/analysis_server/lib/src/generated_protocol.dart
index ff9592122e4d216576bf863592326271131f2f20..d1e0ded8516bc3faabbe281cf2fe91b3f1772176 100644
--- a/pkg/analysis_server/lib/src/generated_protocol.dart
+++ b/pkg/analysis_server/lib/src/generated_protocol.dart
@@ -8102,6 +8102,9 @@ class RequestErrorCode {
/**
* An error occurred during the processing of an "analysis.getErrors"
* request.
+ *
+ * This is a legacy error; it will be removed before the API reaches version
+ * 1.0.
*/
static const GET_ERRORS_ERROR = const RequestErrorCode._("GET_ERRORS_ERROR");
@@ -8118,12 +8121,19 @@ class RequestErrorCode {
/**
* The analysis server has already been started (and hence won't accept new
* connections).
+ *
+ * This error is included for future expansion; at present the analysis
+ * server can only speak to one client at a time so this error will never
+ * occur.
*/
static const SERVER_ALREADY_STARTED = const RequestErrorCode._("SERVER_ALREADY_STARTED");
/**
* An "analysis.setPriorityFiles" request includes one or more files that are
* not being analyzed.
+ *
+ * This is a legacy error; it will be removed before the API reaches version
+ * 1.0.
*/
static const UNANALYZED_PRIORITY_FILES = const RequestErrorCode._("UNANALYZED_PRIORITY_FILES");
@@ -8136,6 +8146,9 @@ class RequestErrorCode {
/**
* The analysis server was requested to perform an action which is not
* supported.
+ *
+ * This is a legacy error; it will be removed before the API reaches version
+ * 1.0.
*/
static const UNSUPPORTED_FEATURE = const RequestErrorCode._("UNSUPPORTED_FEATURE");
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698