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

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.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/lib/src/generated_protocol.dart ('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/test/integration/protocol_matchers.dart
diff --git a/pkg/analysis_server/test/integration/protocol_matchers.dart b/pkg/analysis_server/test/integration/protocol_matchers.dart
index db2cf1c920e3946138cb25e54652e56d4ef7edb7..1dfc11853af296c71640fee104d6e2342e672af9 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1009,6 +1009,7 @@ final Matcher isCompletionSuggestion = new LazyMatcher(() => new MatchesJsonObje
* GETTER
* IMPORT
* KEYWORD
+ * LABEL
* LIBRARY_PREFIX
* LOCAL_VARIABLE
* METHOD
@@ -1032,6 +1033,7 @@ final Matcher isCompletionSuggestionKind = new MatchesEnum("CompletionSuggestion
"GETTER",
"IMPORT",
"KEYWORD",
+ "LABEL",
"LIBRARY_PREFIX",
"LOCAL_VARIABLE",
"METHOD",
@@ -1079,6 +1081,7 @@ final Matcher isElement = new LazyMatcher(() => new MatchesJsonObject(
* FUNCTION
* FUNCTION_TYPE_ALIAS
* GETTER
+ * LABEL
* LIBRARY
* LOCAL_VARIABLE
* METHOD
@@ -1100,6 +1103,7 @@ final Matcher isElementKind = new MatchesEnum("ElementKind", [
"FUNCTION",
"FUNCTION_TYPE_ALIAS",
"GETTER",
+ "LABEL",
"LIBRARY",
"LOCAL_VARIABLE",
"METHOD",
@@ -1239,6 +1243,7 @@ final Matcher isHighlightRegion = new LazyMatcher(() => new MatchesJsonObject(
* IDENTIFIER_DEFAULT
* IMPORT_PREFIX
* KEYWORD
+ * LABEL
* LITERAL_BOOLEAN
* LITERAL_DOUBLE
* LITERAL_INTEGER
@@ -1277,6 +1282,7 @@ final Matcher isHighlightRegionType = new MatchesEnum("HighlightRegionType", [
"IDENTIFIER_DEFAULT",
"IMPORT_PREFIX",
"KEYWORD",
+ "LABEL",
"LITERAL_BOOLEAN",
"LITERAL_DOUBLE",
"LITERAL_INTEGER",
« no previous file with comments | « pkg/analysis_server/lib/src/generated_protocol.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698