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

Unified Diff: pkg/analysis_server/lib/protocol/protocol.dart

Issue 3000823002: Forward Kythe requests to plugins and merge in the results (Closed)
Patch Set: Created 3 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/lib/protocol/protocol_generated.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/protocol/protocol.dart
diff --git a/pkg/analysis_server/lib/protocol/protocol.dart b/pkg/analysis_server/lib/protocol/protocol.dart
index d9f0f86748f8101652e14b76d1fd83eed0bea8c3..df989b1d9f54be40f3ae3f2242d6f35218ee07ed 100644
--- a/pkg/analysis_server/lib/protocol/protocol.dart
+++ b/pkg/analysis_server/lib/protocol/protocol.dart
@@ -480,6 +480,16 @@ class Response {
/**
* Initialize a newly created instance to represent the
+ * GET_KYTHE_ENTRIES_INVALID_FILE error condition.
+ */
+ Response.getKytheEntriesInvalidFile(Request request)
+ : this(request.id,
+ error: new RequestError(
+ RequestErrorCode.GET_KYTHE_ENTRIES_INVALID_FILE,
+ 'Error during `analysis.getKytheEntries`: invalid file.'));
+
+ /**
+ * Initialize a newly created instance to represent the
* GET_NAVIGATION_INVALID_FILE error condition.
*/
Response.getNavigationInvalidFile(Request request)
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/lib/protocol/protocol_generated.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698