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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« 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