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

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

Issue 1392253002: Restructure the public API for server (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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
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 driver; 5 library driver;
6 6
7 import 'package:analysis_server/plugin/analysis/resolver_provider.dart';
7 import 'package:analysis_server/src/server/driver.dart'; 8 import 'package:analysis_server/src/server/driver.dart';
8 import 'package:analysis_server/uri/resolver_provider.dart';
9 import 'package:analyzer/instrumentation/instrumentation.dart'; 9 import 'package:analyzer/instrumentation/instrumentation.dart';
10 import 'package:plugin/plugin.dart'; 10 import 'package:plugin/plugin.dart';
11 11
12 /** 12 /**
13 * An object that can be used to start an analysis server. 13 * An object that can be used to start an analysis server.
14 * 14 *
15 * Clients are not expected to subtype this class. 15 * Clients are not expected to subtype this class.
16 */ 16 */
17 abstract class ServerStarter { 17 abstract class ServerStarter {
18 /** 18 /**
(...skipping 16 matching lines...) Expand all
35 /** 35 /**
36 * Set the [plugins] that are defined outside the analysis_server package. 36 * Set the [plugins] that are defined outside the analysis_server package.
37 */ 37 */
38 void set userDefinedPlugins(List<Plugin> plugins); 38 void set userDefinedPlugins(List<Plugin> plugins);
39 39
40 /** 40 /**
41 * Use the given command-line [arguments] to start this server. 41 * Use the given command-line [arguments] to start this server.
42 */ 42 */
43 void start(List<String> arguments); 43 void start(List<String> arguments);
44 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698