| 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)
|
|
|