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

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

Issue 239573002: Split off a Driver class from analysis server's HttpAnalysisServer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 | « no previous file | pkg/analysis_server/lib/driver.dart » ('j') | pkg/analysis_server/lib/http_server.dart » ('J')
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 ef37d27d2b3daf55c6f72f4f0b8159eab9b7fc9f..84b770210ccd5e71efa2be786fe71b4b0b24097e 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/http_server.dart';
+import 'package:analysis_server/driver.dart';
/**
* Create and run an HTTP-based analysis server.
*/
void main(List<String> args) {
- HttpAnalysisServer server = new HttpAnalysisServer();
- server.start(args);
+ Driver driver = new Driver();
+ driver.start(args);
}
« no previous file with comments | « no previous file | pkg/analysis_server/lib/driver.dart » ('j') | pkg/analysis_server/lib/http_server.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698