| Index: pkg/analysis_server/lib/src/analysis_server.dart
|
| diff --git a/pkg/analysis_server/lib/src/analysis_server.dart b/pkg/analysis_server/lib/src/analysis_server.dart
|
| index d9eb295f3b49be65e30d8f7c559e810ca684541a..5d642e33ae1cf297e89f24088938b15d3a4c32af 100644
|
| --- a/pkg/analysis_server/lib/src/analysis_server.dart
|
| +++ b/pkg/analysis_server/lib/src/analysis_server.dart
|
| @@ -625,6 +625,14 @@ class AnalysisServer {
|
| }
|
|
|
| /**
|
| + * Report to the client that the given [exception] was caught with the
|
| + * associated [stackTrace].
|
| + */
|
| + void reportException(dynamic exception, StackTrace stackTrace) {
|
| + _sendServerErrorNotification(exception, stackTrace);
|
| + }
|
| +
|
| + /**
|
| * Schedules execution of the given [ServerOperation].
|
| */
|
| void scheduleOperation(ServerOperation operation) {
|
|
|