Files
sdk/pkg/analysis_server/bin/server.dart
T
Devon Carew 9a1f783007 Normalize with the internal verison of this file.
Change-Id: I27d56a0f61bb68bfe9f0386dc7b140cdebba4522
Reviewed-on: https://dart-review.googlesource.com/72542
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Devon Carew <devoncarew@google.com>
2018-09-04 16:19:45 +00:00

14 lines
420 B
Dart

// 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/starter.dart';
/**
* Create and run an analysis server.
*/
void main(List<String> args) async {
ServerStarter starter = new ServerStarter();
starter.start(args);
}