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

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

Issue 2559523005: Remove the AnalysisOptionsProcessor (Closed)
Patch Set: 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
« no previous file with comments | « pkg/analyzer/lib/src/task/options.dart ('k') | pkg/analyzer/test/src/context/builder_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 } 146 }
147 147
148 TestContext context; 148 TestContext context;
149 149
150 AnalysisOptionsProvider optionsProvider = new AnalysisOptionsProvider(); 150 AnalysisOptionsProvider optionsProvider = new AnalysisOptionsProvider();
151 ErrorProcessor processor; 151 ErrorProcessor processor;
152 152
153 void configureOptions(String options) { 153 void configureOptions(String options) {
154 Map<String, YamlNode> optionMap = 154 Map<String, YamlNode> optionMap =
155 optionsProvider.getOptionsFromString(options); 155 optionsProvider.getOptionsFromString(options);
156 configureContextOptions(context, 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); 165 plugins.add(AnalysisEngine.instance.commandLinePlugin);
166 plugins.add(AnalysisEngine.instance.optionsPlugin); 166 plugins.add(AnalysisEngine.instance.optionsPlugin);
167 ExtensionManager manager = new ExtensionManager(); 167 ExtensionManager manager = new ExtensionManager();
168 manager.processPlugins(plugins); 168 manager.processPlugins(plugins);
169 } 169 }
170 170
171 class TestContext extends AnalysisContextImpl {} 171 class TestContext extends AnalysisContextImpl {}
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/task/options.dart ('k') | pkg/analyzer/test/src/context/builder_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698