| 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/source/analysis_options_provider.dart'; | 8 import 'package:analyzer/source/analysis_options_provider.dart'; |
| 8 import 'package:analyzer/source/error_processor.dart'; | 9 import 'package:analyzer/source/error_processor.dart'; |
| 9 import 'package:analyzer/src/context/context.dart'; | 10 import 'package:analyzer/src/context/context.dart'; |
| 11 import 'package:analyzer/src/error/codes.dart'; |
| 10 import 'package:analyzer/src/generated/engine.dart'; | 12 import 'package:analyzer/src/generated/engine.dart'; |
| 11 import 'package:analyzer/src/generated/error.dart'; | |
| 12 import 'package:analyzer/src/task/options.dart'; | 13 import 'package:analyzer/src/task/options.dart'; |
| 13 import 'package:plugin/manager.dart'; | 14 import 'package:plugin/manager.dart'; |
| 14 import 'package:plugin/plugin.dart'; | 15 import 'package:plugin/plugin.dart'; |
| 15 import 'package:unittest/unittest.dart'; | 16 import 'package:unittest/unittest.dart'; |
| 16 import 'package:yaml/src/yaml_node.dart'; | 17 import 'package:yaml/src/yaml_node.dart'; |
| 17 | 18 |
| 18 import '../generated/test_support.dart'; | 19 import '../generated/test_support.dart'; |
| 19 | 20 |
| 20 main() { | 21 main() { |
| 21 AnalysisError invalid_assignment = | 22 AnalysisError invalid_assignment = |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 void oneTimeSetup() { | 162 void oneTimeSetup() { |
| 162 List<Plugin> plugins = <Plugin>[]; | 163 List<Plugin> plugins = <Plugin>[]; |
| 163 plugins.addAll(AnalysisEngine.instance.requiredPlugins); | 164 plugins.addAll(AnalysisEngine.instance.requiredPlugins); |
| 164 plugins.add(AnalysisEngine.instance.commandLinePlugin); | 165 plugins.add(AnalysisEngine.instance.commandLinePlugin); |
| 165 plugins.add(AnalysisEngine.instance.optionsPlugin); | 166 plugins.add(AnalysisEngine.instance.optionsPlugin); |
| 166 ExtensionManager manager = new ExtensionManager(); | 167 ExtensionManager manager = new ExtensionManager(); |
| 167 manager.processPlugins(plugins); | 168 manager.processPlugins(plugins); |
| 168 } | 169 } |
| 169 | 170 |
| 170 class TestContext extends AnalysisContextImpl {} | 171 class TestContext extends AnalysisContextImpl {} |
| OLD | NEW |