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

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

Issue 567273002: Add LABEL ElementKind, completion and highlighting kinds. (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/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 a92edc6c7aaab2dea433cb4c218ff2bae8074e83..655fc1f336313f0669224229e7f3534a00192d0a 100644
--- a/pkg/analysis_server/lib/src/generated_protocol.dart
+++ b/pkg/analysis_server/lib/src/generated_protocol.dart
@@ -5398,6 +5398,7 @@ class CompletionSuggestion implements HasToJson {
* GETTER
* IMPORT
* KEYWORD
+ * LABEL
* LIBRARY_PREFIX
* LOCAL_VARIABLE
* METHOD
@@ -5431,6 +5432,8 @@ class CompletionSuggestionKind {
static const KEYWORD = const CompletionSuggestionKind._("KEYWORD");
+ static const LABEL = const CompletionSuggestionKind._("LABEL");
+
static const LIBRARY_PREFIX = const CompletionSuggestionKind._("LIBRARY_PREFIX");
static const LOCAL_VARIABLE = const CompletionSuggestionKind._("LOCAL_VARIABLE");
@@ -5477,6 +5480,8 @@ class CompletionSuggestionKind {
return IMPORT;
case "KEYWORD":
return KEYWORD;
+ case "LABEL":
+ return LABEL;
case "LIBRARY_PREFIX":
return LIBRARY_PREFIX;
case "LOCAL_VARIABLE":
@@ -5712,6 +5717,7 @@ class Element implements HasToJson {
* FUNCTION
* FUNCTION_TYPE_ALIAS
* GETTER
+ * LABEL
* LIBRARY
* LOCAL_VARIABLE
* METHOD
@@ -5741,6 +5747,8 @@ class ElementKind {
static const GETTER = const ElementKind._("GETTER");
+ static const LABEL = const ElementKind._("LABEL");
+
static const LIBRARY = const ElementKind._("LIBRARY");
static const LOCAL_VARIABLE = const ElementKind._("LOCAL_VARIABLE");
@@ -5783,6 +5791,8 @@ class ElementKind {
return FUNCTION_TYPE_ALIAS;
case "GETTER":
return GETTER;
+ case "LABEL":
+ return LABEL;
case "LIBRARY":
return LIBRARY;
case "LOCAL_VARIABLE":
@@ -6245,6 +6255,7 @@ class HighlightRegion implements HasToJson {
* IDENTIFIER_DEFAULT
* IMPORT_PREFIX
* KEYWORD
+ * LABEL
* LITERAL_BOOLEAN
* LITERAL_DOUBLE
* LITERAL_INTEGER
@@ -6301,6 +6312,8 @@ class HighlightRegionType {
static const KEYWORD = const HighlightRegionType._("KEYWORD");
+ static const LABEL = const HighlightRegionType._("LABEL");
+
static const LITERAL_BOOLEAN = const HighlightRegionType._("LITERAL_BOOLEAN");
static const LITERAL_DOUBLE = const HighlightRegionType._("LITERAL_DOUBLE");
@@ -6377,6 +6390,8 @@ class HighlightRegionType {
return IMPORT_PREFIX;
case "KEYWORD":
return KEYWORD;
+ case "LABEL":
+ return LABEL;
case "LITERAL_BOOLEAN":
return LITERAL_BOOLEAN;
case "LITERAL_DOUBLE":
« 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