Index: pkg/analysis_server/lib/server.dart |
diff --git a/pkg/analysis_server/lib/server.dart b/pkg/analysis_server/lib/server.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5cc90ccaa47d226c72cf8e34f91fad061c016655 |
--- /dev/null |
+++ b/pkg/analysis_server/lib/server.dart |
@@ -0,0 +1,13 @@ |
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
+// 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/src/http_server.dart'; |
+ |
+/** |
+ * Create and run an HTTP-based analysis server. |
+ */ |
+void main(List<String> args) { |
devoncarew
2014/01/21 20:59:27
You probably want to put this library into bin/ (a
Brian Wilkerson
2014/01/22 01:05:49
Done
|
+ HttpAnalysisServer server = new HttpAnalysisServer(); |
+ server.start(args); |
+} |