| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * Support for client code that interacts with the analysis domain of an | 6 * Support for client code that interacts with the analysis domain of an |
| 7 * analysis server. | 7 * analysis server. |
| 8 * | 8 * |
| 9 * Plugins can gain access to the request handler that implements the analysis | 9 * Plugins can gain access to the request handler that implements the analysis |
| 10 * domain in order to extend the functionality of that domain. The class | 10 * domain in order to extend the functionality of that domain. The class |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * registerExtension( | 22 * registerExtension( |
| 23 * SET_ANALYSIS_DOMAIN_EXTENSION_POINT_ID, | 23 * SET_ANALYSIS_DOMAIN_EXTENSION_POINT_ID, |
| 24 * (AnalysisDomain domain) => analysisDomain = domain); | 24 * (AnalysisDomain domain) => analysisDomain = domain); |
| 25 * ... | 25 * ... |
| 26 * } | 26 * } |
| 27 */ | 27 */ |
| 28 library analysis_server.plugin.analysis.analysis_domain; | 28 library analysis_server.plugin.analysis.analysis_domain; |
| 29 | 29 |
| 30 import 'dart:async'; | 30 import 'dart:async'; |
| 31 | 31 |
| 32 import 'package:analysis_server/plugin/protocol/protocol.dart' |
| 33 show AnalysisService; |
| 32 import 'package:analysis_server/src/plugin/server_plugin.dart'; | 34 import 'package:analysis_server/src/plugin/server_plugin.dart'; |
| 33 import 'package:analysis_server/src/protocol.dart' show AnalysisService; | |
| 34 import 'package:analyzer/src/generated/engine.dart' | 35 import 'package:analyzer/src/generated/engine.dart' |
| 35 show AnalysisContext, ComputedResult; | 36 show AnalysisContext, ComputedResult; |
| 36 import 'package:analyzer/src/generated/source.dart' show Source; | 37 import 'package:analyzer/src/generated/source.dart' show Source; |
| 37 import 'package:analyzer/task/model.dart' show ResultDescriptor; | 38 import 'package:analyzer/task/model.dart' show ResultDescriptor; |
| 38 import 'package:plugin/plugin.dart'; | 39 import 'package:plugin/plugin.dart'; |
| 39 | 40 |
| 40 /** | 41 /** |
| 41 * The identifier of the extension point that allows plugins to get access to an | 42 * The identifier of the extension point that allows plugins to get access to an |
| 42 * [AnalysisDomain]. The object used as an extension must be a | 43 * [AnalysisDomain]. The object used as an extension must be a |
| 43 * [SetAnalysisDomain]. | 44 * [SetAnalysisDomain]. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 70 */ | 71 */ |
| 71 Stream<ComputedResult> onResultComputed(ResultDescriptor result); | 72 Stream<ComputedResult> onResultComputed(ResultDescriptor result); |
| 72 | 73 |
| 73 /** | 74 /** |
| 74 * Schedule sending the given [service] notifications for the given [source] | 75 * Schedule sending the given [service] notifications for the given [source] |
| 75 * in the given [context]. | 76 * in the given [context]. |
| 76 */ | 77 */ |
| 77 void scheduleNotification( | 78 void scheduleNotification( |
| 78 AnalysisContext context, Source source, AnalysisService service); | 79 AnalysisContext context, Source source, AnalysisService service); |
| 79 } | 80 } |
| OLD | NEW |