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

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

Issue 488103003: Add SearchResultKind.UNKNOWN to the analysis server API. (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
« 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 2c46a878759887204f3da4188cbfdd2e18812283..00bcc2e924d286c6e9b7bbcbdfd75c9a33f8b66e 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1644,6 +1644,7 @@ final Matcher isSearchResult = new LazyMatcher(() => new MatchesJsonObject(
* READ
* READ_WRITE
* REFERENCE
+ * UNKNOWN
* WRITE
* }
*/
@@ -1653,6 +1654,7 @@ final Matcher isSearchResultKind = new MatchesEnum("SearchResultKind", [
"READ",
"READ_WRITE",
"REFERENCE",
+ "UNKNOWN",
"WRITE"
]);
« 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