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

Unified Diff: pkg/analysis_server/lib/src/generated_protocol.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/doc/api.html ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/generated_protocol.dart
diff --git a/pkg/analysis_server/lib/src/generated_protocol.dart b/pkg/analysis_server/lib/src/generated_protocol.dart
index b40df5682f38eb5ffe80a4dd32ae3a129889aafc..5ca07b33d3845361748194a78d828c5b495bf282 100644
--- a/pkg/analysis_server/lib/src/generated_protocol.dart
+++ b/pkg/analysis_server/lib/src/generated_protocol.dart
@@ -7631,6 +7631,7 @@ class SearchResult implements HasToJson {
* READ
* READ_WRITE
* REFERENCE
+ * UNKNOWN
* WRITE
* }
*/
@@ -7662,6 +7663,11 @@ class SearchResultKind {
static const REFERENCE = const SearchResultKind._("REFERENCE");
/**
+ * Some other kind of search result.
+ */
+ static const UNKNOWN = const SearchResultKind._("UNKNOWN");
+
+ /**
* A reference to a field, parameter or variable where it is being written.
*/
static const WRITE = const SearchResultKind._("WRITE");
@@ -7682,6 +7688,8 @@ class SearchResultKind {
return READ_WRITE;
case "REFERENCE":
return REFERENCE;
+ case "UNKNOWN":
+ return UNKNOWN;
case "WRITE":
return WRITE;
}
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/test/integration/protocol_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698