| Index: pkg/analysis_server/lib/src/protocol.dart
|
| diff --git a/pkg/analysis_server/lib/src/protocol.dart b/pkg/analysis_server/lib/src/protocol.dart
|
| index c219cf3a267812228b55d20bbc22881b60c1373a..4b32544c1f52cb1c33bd28ac27117d19276dc76c 100644
|
| --- a/pkg/analysis_server/lib/src/protocol.dart
|
| +++ b/pkg/analysis_server/lib/src/protocol.dart
|
| @@ -265,6 +265,9 @@ class Response {
|
| Response.unknownRequest(Request request)
|
| : this(request.id, new RequestError(-7, 'Unknown request'));
|
|
|
| + Response.contextAlreadyExists(Request request)
|
| + : this(request.id, new RequestError(-8, 'Context already exists'));
|
| +
|
| /**
|
| * Initialize a newly created instance based upon the given JSON data
|
| */
|
|
|