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

Unified Diff: pkg/analysis_server/lib/protocol/protocol_generated.dart

Issue 2865403005: Remove an obsolete error from the spec and an obsolete command-line flag (Closed)
Patch Set: Created 3 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
« no previous file with comments | « pkg/analysis_server/lib/protocol/protocol.dart ('k') | pkg/analysis_server/lib/src/analysis_server.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/protocol/protocol_generated.dart
diff --git a/pkg/analysis_server/lib/protocol/protocol_generated.dart b/pkg/analysis_server/lib/protocol/protocol_generated.dart
index 0e7da3a0ac8fbd1af58bda280edaa703b8cf79e2..67408251eebe4d9d67d294ec56671a91ef439499 100644
--- a/pkg/analysis_server/lib/protocol/protocol_generated.dart
+++ b/pkg/analysis_server/lib/protocol/protocol_generated.dart
@@ -15624,7 +15624,6 @@ class RequestError implements HasToJson {
* INVALID_OVERLAY_CHANGE
* INVALID_PARAMETER
* INVALID_REQUEST
- * NO_INDEX_GENERATED
* ORGANIZE_DIRECTIVES_ERROR
* REFACTORING_REQUEST_CANCELLED
* SERVER_ALREADY_STARTED
@@ -15736,13 +15735,6 @@ class RequestErrorCode implements Enum {
const RequestErrorCode._("INVALID_REQUEST");
/**
- * The "--no-index" flag was passed when the analysis server created, but
- * this API call requires an index to have been generated.
- */
- static const RequestErrorCode NO_INDEX_GENERATED =
- const RequestErrorCode._("NO_INDEX_GENERATED");
-
- /**
* An "edit.organizeDirectives" request specified a Dart file that cannot be
* analyzed. The reason is described in the message.
*/
@@ -15839,7 +15831,6 @@ class RequestErrorCode implements Enum {
INVALID_OVERLAY_CHANGE,
INVALID_PARAMETER,
INVALID_REQUEST,
- NO_INDEX_GENERATED,
ORGANIZE_DIRECTIVES_ERROR,
REFACTORING_REQUEST_CANCELLED,
SERVER_ALREADY_STARTED,
@@ -15887,8 +15878,6 @@ class RequestErrorCode implements Enum {
return INVALID_PARAMETER;
case "INVALID_REQUEST":
return INVALID_REQUEST;
- case "NO_INDEX_GENERATED":
- return NO_INDEX_GENERATED;
case "ORGANIZE_DIRECTIVES_ERROR":
return ORGANIZE_DIRECTIVES_ERROR;
case "REFACTORING_REQUEST_CANCELLED":
« no previous file with comments | « pkg/analysis_server/lib/protocol/protocol.dart ('k') | pkg/analysis_server/lib/src/analysis_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698