| 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/protocol/protocol.dart'; | 7 import 'package:analysis_server/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/protocol/protocol_constants.dart'; | 8 import 'package:analysis_server/protocol/protocol_constants.dart'; |
| 9 import 'package:analysis_server/protocol/protocol_generated.dart' | 9 import 'package:analysis_server/protocol/protocol_generated.dart' |
| 10 hide AnalysisOptions; | 10 hide AnalysisOptions; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 void setAnalysisUpdateContentParams( | 367 void setAnalysisUpdateContentParams( |
| 368 plugin.AnalysisUpdateContentParams params) { | 368 plugin.AnalysisUpdateContentParams params) { |
| 369 analysisUpdateContentParams = params; | 369 analysisUpdateContentParams = params; |
| 370 } | 370 } |
| 371 | 371 |
| 372 @override | 372 @override |
| 373 Future<List<Null>> stopAll() async { | 373 Future<List<Null>> stopAll() async { |
| 374 fail('Unexpected invocation of stopAll'); | 374 fail('Unexpected invocation of stopAll'); |
| 375 return null; | 375 return null; |
| 376 } | 376 } |
| 377 | |
| 378 @override | |
| 379 void whitelistEverything() { | |
| 380 fail('Unexpected invocation of whitelistEverything'); | |
| 381 } | |
| 382 } | 377 } |
| OLD | NEW |