ce2bbd4108
Change-Id: Ib651df66b8ecef1abc9e9992e1461412d6e88df2 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/101760 Reviewed-by: Dan Rubel <danrubel@google.com> Commit-Queue: Devon Carew <devoncarew@google.com>
15 lines
453 B
Dart
15 lines
453 B
Dart
#!/usr/bin/env dart
|
|
// Copyright (c) 2018, 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:dartfix/src/driver.dart';
|
|
|
|
/// The entry point for dartfix.
|
|
void main(List<String> args) async {
|
|
Driver starter = new Driver();
|
|
|
|
// Wait for the starter to complete.
|
|
await starter.start(args);
|
|
}
|