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

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

Issue 572373004: add element to completion suggestion API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 f5e0c0c0abe71d8a8a730bef37b1380ab0bd27a4..e6282bd9d5244dd3f3b7c8af1416429073bd9482 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -968,6 +968,7 @@ final Matcher isCompletionRelevance = new MatchesEnum("CompletionRelevance", [
* "docSummary": optional String
* "docComplete": optional String
* "declaringType": optional String
+ * "element": optional Element
* "returnType": optional String
* "parameterNames": optional List<String>
* "parameterTypes": optional List<String>
@@ -990,6 +991,7 @@ final Matcher isCompletionSuggestion = new LazyMatcher(() => new MatchesJsonObje
"docSummary": isString,
"docComplete": isString,
"declaringType": isString,
+ "element": isElement,
"returnType": isString,
"parameterNames": isListOf(isString),
"parameterTypes": isListOf(isString),
« 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