OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library domain.completion; | 5 library domain.completion; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:analysis_server/completion/completion_core.dart' | 9 import 'package:analysis_server/completion/completion_core.dart' |
10 show CompletionRequest; | 10 show CompletionRequest; |
11 import 'package:analysis_server/src/analysis_server.dart'; | 11 import 'package:analysis_server/src/analysis_server.dart'; |
12 import 'package:analysis_server/src/constants.dart'; | 12 import 'package:analysis_server/src/constants.dart'; |
| 13 import 'package:analysis_server/src/context_manager.dart'; |
13 import 'package:analysis_server/src/protocol.dart'; | 14 import 'package:analysis_server/src/protocol.dart'; |
14 import 'package:analysis_server/src/services/completion/completion_manager.dart'
; | 15 import 'package:analysis_server/src/services/completion/completion_manager.dart'
; |
15 import 'package:analysis_server/src/services/search/search_engine.dart'; | 16 import 'package:analysis_server/src/services/search/search_engine.dart'; |
16 import 'package:analyzer/src/generated/engine.dart'; | 17 import 'package:analyzer/src/generated/engine.dart'; |
17 import 'package:analyzer/src/generated/source.dart'; | 18 import 'package:analyzer/src/generated/source.dart'; |
18 | 19 |
19 export 'package:analysis_server/src/services/completion/completion_manager.dart' | 20 export 'package:analysis_server/src/services/completion/completion_manager.dart' |
20 show CompletionPerformance, CompletionRequest, OperationPerformance; | 21 show CompletionPerformance, CompletionRequest, OperationPerformance; |
21 | 22 |
22 /** | 23 /** |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 if (_sourcesChangedSubscription != null) { | 273 if (_sourcesChangedSubscription != null) { |
273 _sourcesChangedSubscription.cancel(); | 274 _sourcesChangedSubscription.cancel(); |
274 _sourcesChangedSubscription = null; | 275 _sourcesChangedSubscription = null; |
275 } | 276 } |
276 if (_manager != null) { | 277 if (_manager != null) { |
277 _manager.dispose(); | 278 _manager.dispose(); |
278 _manager = null; | 279 _manager = null; |
279 } | 280 } |
280 } | 281 } |
281 } | 282 } |
OLD | NEW |