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

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

Issue 468233003: Write an integration test for analysis.navigation notification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 241b704f81f529dc29956cdeee2b9cf86665d21f..f22237d6de884bad1fb019e23613a6b15a2938c1 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1035,19 +1035,20 @@ final Matcher isElement = new MatchesJsonObject(
* CLASS_TYPE_ALIAS
* COMPILATION_UNIT
* CONSTRUCTOR
- * GETTER
* FIELD
* FUNCTION
* FUNCTION_TYPE_ALIAS
+ * GETTER
* LIBRARY
* LOCAL_VARIABLE
* METHOD
+ * PARAMETER
* SETTER
* TOP_LEVEL_VARIABLE
* TYPE_PARAMETER
- * UNKNOWN
* UNIT_TEST_GROUP
* UNIT_TEST_TEST
+ * UNKNOWN
* }
*/
final Matcher isElementKind = new MatchesEnum("ElementKind", [
@@ -1055,19 +1056,20 @@ final Matcher isElementKind = new MatchesEnum("ElementKind", [
"CLASS_TYPE_ALIAS",
"COMPILATION_UNIT",
"CONSTRUCTOR",
- "GETTER",
"FIELD",
"FUNCTION",
"FUNCTION_TYPE_ALIAS",
+ "GETTER",
"LIBRARY",
"LOCAL_VARIABLE",
"METHOD",
+ "PARAMETER",
"SETTER",
"TOP_LEVEL_VARIABLE",
"TYPE_PARAMETER",
- "UNKNOWN",
"UNIT_TEST_GROUP",
- "UNIT_TEST_TEST"
+ "UNIT_TEST_TEST",
+ "UNKNOWN"
]);
/**

Powered by Google App Engine
This is Rietveld 408576698