| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 import 'package:analysis_server/driver.dart'; | 5 import 'package:analysis_server/starter.dart'; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Create and run an HTTP-based analysis server. | 8 * Create and run an analysis server. |
| 9 */ | 9 */ |
| 10 void main(List<String> args) { | 10 void main(List<String> args) { |
| 11 Driver driver = new Driver(); | 11 ServerStarter starter = new ServerStarter(); |
| 12 driver.start(args); | 12 starter.start(args); |
| 13 } | 13 } |
| OLD | NEW |