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

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

Issue 677333002: Add ENUM and ENUM_CONSTANT to the specification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 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/test/integration/protocol_matchers.dart » ('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 85fcfcc2e64748cb519671dffdeae93dd40dcb4e..ccc138d86566a444db1e2ffcf2c4866ba4fd2ce3 100644
--- a/pkg/analysis_server/lib/src/generated_protocol.dart
+++ b/pkg/analysis_server/lib/src/generated_protocol.dart
@@ -6410,6 +6410,8 @@ class HighlightRegion implements HasToJson {
* CONSTRUCTOR
* DIRECTIVE
* DYNAMIC_TYPE
+ * ENUM
+ * ENUM_CONSTANT
* FIELD
* FIELD_STATIC
* FUNCTION
@@ -6458,6 +6460,10 @@ class HighlightRegionType implements Enum {
static const DYNAMIC_TYPE = const HighlightRegionType._("DYNAMIC_TYPE");
+ static const ENUM = const HighlightRegionType._("ENUM");
+
+ static const ENUM_CONSTANT = const HighlightRegionType._("ENUM_CONSTANT");
+
static const FIELD = const HighlightRegionType._("FIELD");
static const FIELD_STATIC = const HighlightRegionType._("FIELD_STATIC");
@@ -6536,6 +6542,10 @@ class HighlightRegionType implements Enum {
return DIRECTIVE;
case "DYNAMIC_TYPE":
return DYNAMIC_TYPE;
+ case "ENUM":
+ return ENUM;
+ case "ENUM_CONSTANT":
+ return ENUM_CONSTANT;
case "FIELD":
return FIELD;
case "FIELD_STATIC":
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698