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

Side by Side Diff: pkg/analyzer/test/source/error_processor_test.dart

Issue 2565993002: Remove the command-line plugin (Closed)
Patch Set: remove missed file Created 4 years 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) 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 library analyzer.test.source.error_processor; 5 library analyzer.test.source.error_processor;
6 6
7 import 'package:analyzer/error/error.dart'; 7 import 'package:analyzer/error/error.dart';
8 import 'package:analyzer/source/analysis_options_provider.dart'; 8 import 'package:analyzer/source/analysis_options_provider.dart';
9 import 'package:analyzer/source/error_processor.dart'; 9 import 'package:analyzer/source/error_processor.dart';
10 import 'package:analyzer/src/context/context.dart'; 10 import 'package:analyzer/src/context/context.dart';
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 optionsProvider.getOptionsFromString(options); 155 optionsProvider.getOptionsFromString(options);
156 applyToAnalysisOptions(context.analysisOptions, optionMap); 156 applyToAnalysisOptions(context.analysisOptions, optionMap);
157 } 157 }
158 158
159 ErrorProcessor getProcessor(AnalysisError error) => 159 ErrorProcessor getProcessor(AnalysisError error) =>
160 ErrorProcessor.getProcessor(context, error); 160 ErrorProcessor.getProcessor(context, error);
161 161
162 void oneTimeSetup() { 162 void oneTimeSetup() {
163 List<Plugin> plugins = <Plugin>[]; 163 List<Plugin> plugins = <Plugin>[];
164 plugins.addAll(AnalysisEngine.instance.requiredPlugins); 164 plugins.addAll(AnalysisEngine.instance.requiredPlugins);
165 plugins.add(AnalysisEngine.instance.commandLinePlugin);
166 ExtensionManager manager = new ExtensionManager(); 165 ExtensionManager manager = new ExtensionManager();
167 manager.processPlugins(plugins); 166 manager.processPlugins(plugins);
168 } 167 }
169 168
170 class TestContext extends AnalysisContextImpl {} 169 class TestContext extends AnalysisContextImpl {}
OLDNEW
« no previous file with comments | « pkg/analyzer/test/generated/test_support.dart ('k') | pkg/analyzer/test/src/context/abstract_context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698