157ebfe50f
This reverts commit 7e373831ce.
Change-Id: Ib94d793a5753ec6352cd9a65e35f726a63336368
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/154830
Reviewed-by: Siva Annamalai <asiva@google.com>
14 lines
428 B
Dart
14 lines
428 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 'dart:async';
|
|
import 'dart:isolate';
|
|
|
|
import 'package:dartdev/dartdev.dart';
|
|
|
|
/// The entry point for dartdev.
|
|
Future<void> main(List<String> args, SendPort port) async {
|
|
await runDartdev(args, port);
|
|
}
|