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

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

Issue 2719083003: New Completion defaultArgumentListString protocol. (Closed)
Patch Set: Created 3 years, 10 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 58a53bdf4ffdc6ce35b9d108c16af54db392d305..2246d1e6e680187b49442a3578031316054a61de 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1263,6 +1263,7 @@ final Matcher isCompletionId = isString;
* "docSummary": optional String
* "docComplete": optional String
* "declaringType": optional String
+ * "defaultArgumentListString": optional String
* "element": optional Element
* "returnType": optional String
* "parameterNames": optional List<String>
@@ -1287,6 +1288,7 @@ final Matcher isCompletionSuggestion = new LazyMatcher(() => new MatchesJsonObje
"docSummary": isString,
"docComplete": isString,
"declaringType": isString,
+ "defaultArgumentListString": isString,
"element": isElement,
"returnType": isString,
"parameterNames": isListOf(isString),

Powered by Google App Engine
This is Rietveld 408576698