| 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 import 'dart:async'; | 5 import 'dart:async'; |
| 6 | 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart' | 7 import 'package:analysis_server/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/protocol/protocol_generated.dart' |
| 8 hide AnalysisOptions; | 9 hide AnalysisOptions; |
| 9 import 'package:analysis_server/src/analysis_server.dart'; | 10 import 'package:analysis_server/src/analysis_server.dart'; |
| 10 import 'package:analysis_server/src/constants.dart'; | 11 import 'package:analysis_server/src/constants.dart'; |
| 11 import 'package:analysis_server/src/domain_analysis.dart'; | 12 import 'package:analysis_server/src/domain_analysis.dart'; |
| 12 import 'package:analysis_server/src/plugin/notification_manager.dart'; | 13 import 'package:analysis_server/src/plugin/notification_manager.dart'; |
| 13 import 'package:analysis_server/src/plugin/plugin_manager.dart'; | 14 import 'package:analysis_server/src/plugin/plugin_manager.dart'; |
| 14 import 'package:analysis_server/src/plugin/server_plugin.dart'; | 15 import 'package:analysis_server/src/plugin/server_plugin.dart'; |
| 15 import 'package:analysis_server/src/provisional/completion/dart/completion_plugi
n.dart'; | 16 import 'package:analysis_server/src/provisional/completion/dart/completion_plugi
n.dart'; |
| 16 import 'package:analysis_server/src/services/index/index.dart'; | 17 import 'package:analysis_server/src/services/index/index.dart'; |
| 17 import 'package:analyzer/context/context_root.dart' as analyzer; | 18 import 'package:analyzer/context/context_root.dart' as analyzer; |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 plugin.AnalysisUpdateContentParams params) { | 352 plugin.AnalysisUpdateContentParams params) { |
| 352 analysisUpdateContentParams = params; | 353 analysisUpdateContentParams = params; |
| 353 } | 354 } |
| 354 | 355 |
| 355 @override | 356 @override |
| 356 Future<List<Null>> stopAll() async { | 357 Future<List<Null>> stopAll() async { |
| 357 fail('Unexpected invocation of stopAll'); | 358 fail('Unexpected invocation of stopAll'); |
| 358 return null; | 359 return null; |
| 359 } | 360 } |
| 360 } | 361 } |
| OLD | NEW |