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