OLD | NEW |
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 Loading... |
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 {} |
OLD | NEW |