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

Side by Side Diff: pkg/analyzer_cli/lib/starter.dart

Issue 1658663002: Move ResolverProvider to analyzer so that it can be shared (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 months 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_cli/lib/src/driver.dart ('k') | no next file » | 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) 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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer_cli/lib/src/driver.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698