fcb6ba0d96
Change-Id: Id3a0145076a671c830785b6344035726593e1492 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/151940 Auto-Submit: Kevin Moore <kevmoo@google.com> Commit-Queue: Jaime Wren <jwren@google.com> Reviewed-by: Jaime Wren <jwren@google.com>
11 lines
362 B
Dart
11 lines
362 B
Dart
// Copyright (c) 2020, 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:dartdev/dartdev.dart';
|
|
|
|
/// The entry point for dartdev.
|
|
Future<void> main(List<String> args) async {
|
|
await runDartdev(args);
|
|
}
|