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

Unified Diff: pkg/analysis_server/bin/server.dart

Issue 795833005: Server clean-up (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analysis_server/bin/fuzz/server_manager.dart ('k') | pkg/analysis_server/lib/driver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/bin/server.dart
diff --git a/pkg/analysis_server/bin/server.dart b/pkg/analysis_server/bin/server.dart
index 84b770210ccd5e71efa2be786fe71b4b0b24097e..f0d075f6f8d4a3540de263d0eeb752edb74d106f 100644
--- a/pkg/analysis_server/bin/server.dart
+++ b/pkg/analysis_server/bin/server.dart
@@ -2,12 +2,12 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-import 'package:analysis_server/driver.dart';
+import 'package:analysis_server/starter.dart';
/**
- * Create and run an HTTP-based analysis server.
+ * Create and run an analysis server.
*/
void main(List<String> args) {
- Driver driver = new Driver();
- driver.start(args);
+ ServerStarter starter = new ServerStarter();
+ starter.start(args);
}
« no previous file with comments | « pkg/analysis_server/bin/fuzz/server_manager.dart ('k') | pkg/analysis_server/lib/driver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698