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

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

Issue 990343002: Add an optional 'typeParameters' to Element. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update version. Created 5 years, 9 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 633c3803e884a1b9abe206b3b8cfe00eb1d7bedf..ad98577247f1e0aa5f863e0872affdc57cf618cc 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1178,6 +1178,7 @@ final Matcher isCompletionSuggestionKind = new MatchesEnum("CompletionSuggestion
* "flags": int
* "parameters": optional String
* "returnType": optional String
+ * "typeParameters": optional String
* }
*/
final Matcher isElement = new LazyMatcher(() => new MatchesJsonObject(
@@ -1188,7 +1189,8 @@ final Matcher isElement = new LazyMatcher(() => new MatchesJsonObject(
}, optionalFields: {
"location": isLocation,
"parameters": isString,
- "returnType": isString
+ "returnType": isString,
+ "typeParameters": isString
}));
/**
« no previous file with comments | « pkg/analysis_server/test/analysis/notification_outline_test.dart ('k') | pkg/analysis_server/test/protocol_server_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698