Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(536)

Side by Side Diff: pkg/analysis_server/test/analysis_abstract.dart

Issue 3003663002: Remove the auto-discovery of plugins (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/plugin/plugin_watcher.dart ('k') | pkg/analysis_server/test/src/plugin/plugin_manager_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698