| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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_cli.starter; | 5 library analyzer_cli.starter; |
| 6 | 6 |
| 7 import 'package:analyzer_cli/plugin/analysis/resolver_provider.dart'; | 7 import 'package:analyzer/plugin/resolver_provider.dart'; |
| 8 import 'package:analyzer_cli/src/driver.dart'; | 8 import 'package:analyzer_cli/src/driver.dart'; |
| 9 import 'package:plugin/plugin.dart'; | 9 import 'package:plugin/plugin.dart'; |
| 10 | 10 |
| 11 /** | 11 /** |
| 12 * An object that can be used to start a command-line analysis. This class | 12 * An object that can be used to start a command-line analysis. This class |
| 13 * exists so that clients can configure a command-line analyzer before starting | 13 * exists so that clients can configure a command-line analyzer before starting |
| 14 * it. | 14 * it. |
| 15 * | 15 * |
| 16 * Clients may not extend, implement or mix-in this class. | 16 * Clients may not extend, implement or mix-in this class. |
| 17 */ | 17 */ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 31 /** | 31 /** |
| 32 * Set the [plugins] that are defined outside the analyzer_cli package. | 32 * Set the [plugins] that are defined outside the analyzer_cli package. |
| 33 */ | 33 */ |
| 34 void set userDefinedPlugins(List<Plugin> plugins); | 34 void set userDefinedPlugins(List<Plugin> plugins); |
| 35 | 35 |
| 36 /** | 36 /** |
| 37 * Use the given command-line [arguments] to start this analyzer. | 37 * Use the given command-line [arguments] to start this analyzer. |
| 38 */ | 38 */ |
| 39 void start(List<String> arguments); | 39 void start(List<String> arguments); |
| 40 } | 40 } |
| OLD | NEW |