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

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 684183002: Refactor CompletionSuggestionKind (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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
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 691cc81587be4e3bc50e02bad8470c234ad85f98..88483a225b59d835baeae19ac6ef59514a5219cf 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1036,50 +1036,24 @@ final Matcher isCompletionSuggestion = new LazyMatcher(() => new MatchesJsonObje
*
* enum {
* ARGUMENT_LIST
- * CLASS
- * CLASS_ALIAS
- * CONSTRUCTOR
- * FIELD
- * FUNCTION
- * FUNCTION_TYPE_ALIAS
- * GETTER
* IMPORT
+ * IDENTIFIER
+ * INVOCATION
* KEYWORD
- * LABEL
- * LIBRARY_PREFIX
- * LOCAL_VARIABLE
- * METHOD
- * METHOD_NAME
* NAMED_ARGUMENT
* OPTIONAL_ARGUMENT
* PARAMETER
- * SETTER
- * TOP_LEVEL_VARIABLE
- * TYPE_PARAMETER
* }
*/
final Matcher isCompletionSuggestionKind = new MatchesEnum("CompletionSuggestionKind", [
"ARGUMENT_LIST",
- "CLASS",
- "CLASS_ALIAS",
- "CONSTRUCTOR",
- "FIELD",
- "FUNCTION",
- "FUNCTION_TYPE_ALIAS",
- "GETTER",
"IMPORT",
+ "IDENTIFIER",
+ "INVOCATION",
"KEYWORD",
- "LABEL",
- "LIBRARY_PREFIX",
- "LOCAL_VARIABLE",
- "METHOD",
- "METHOD_NAME",
"NAMED_ARGUMENT",
"OPTIONAL_ARGUMENT",
- "PARAMETER",
- "SETTER",
- "TOP_LEVEL_VARIABLE",
- "TYPE_PARAMETER"
+ "PARAMETER"
]);
/**

Powered by Google App Engine
This is Rietveld 408576698