| 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 8fe0d1849b65ba0c7bab8b4a20c652f23e2457cb..b440939d35131ed11401dae1f6570b126887bac5 100644
|
| --- a/pkg/analysis_server/lib/src/analysis_server.dart
|
| +++ b/pkg/analysis_server/lib/src/analysis_server.dart
|
| @@ -23,6 +23,7 @@ import 'package:analysis_server/src/domains/analysis/navigation.dart';
|
| import 'package:analysis_server/src/domains/analysis/navigation_dart.dart';
|
| import 'package:analysis_server/src/domains/analysis/occurrences.dart';
|
| import 'package:analysis_server/src/domains/analysis/occurrences_dart.dart';
|
| +import 'package:analysis_server/src/ide_options.dart';
|
| import 'package:analysis_server/src/operation/operation.dart';
|
| import 'package:analysis_server/src/operation/operation_analysis.dart';
|
| import 'package:analysis_server/src/operation/operation_queue.dart';
|
| @@ -111,6 +112,11 @@ class AnalysisServer {
|
| static int performOperationDelayFrequency = 25;
|
|
|
| /**
|
| + * IDE options for this server instance.
|
| + */
|
| + IdeOptions ideOptions;
|
| +
|
| + /**
|
| * The options of this server instance.
|
| */
|
| AnalysisServerOptions options;
|
| @@ -461,6 +467,7 @@ class AnalysisServer {
|
| channel.sendNotification(notification);
|
| channel.listen(handleRequest, onDone: done, onError: error);
|
| handlers = serverPlugin.createDomains(this);
|
| + ideOptions = new IdeOptionsImpl();
|
| }
|
|
|
| /**
|
| @@ -529,11 +536,6 @@ class AnalysisServer {
|
| _onContextsChangedController.stream;
|
|
|
| /**
|
| - * The stream that is notified when a single file has been analyzed.
|
| - */
|
| - Stream get onFileAnalyzed => _onFileAnalyzedController.stream;
|
| -
|
| - /**
|
| * The stream that is notified when a single file has been added. This exists
|
| * as a temporary stopgap for plugins, until the official plugin API is
|
| * complete.
|
| @@ -541,6 +543,11 @@ class AnalysisServer {
|
| Stream get onFileAdded => _onFileAddedController.stream;
|
|
|
| /**
|
| + * The stream that is notified when a single file has been analyzed.
|
| + */
|
| + Stream get onFileAnalyzed => _onFileAnalyzedController.stream;
|
| +
|
| + /**
|
| * The stream that is notified when a single file has been changed. This
|
| * exists as a temporary stopgap for plugins, until the official plugin API is
|
| * complete.
|
|
|