Files
sdk/pkg/dartdev/bin/dartdev.dart
T
Mike Fairhurst ba372d6e8a [dartdev] Remove unused dart:async import
Change-Id: I800a2f3f85520149e73a541dac4cd1a7a04f1222
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/161466
Auto-Submit: Mike Fairhurst <mfairhurst@google.com>
Commit-Queue: Jaime Wren <jwren@google.com>
Reviewed-by: Jaime Wren <jwren@google.com>
2020-09-02 17:37:57 +00:00

13 lines
407 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:isolate';
import 'package:dartdev/dartdev.dart';
/// The entry point for dartdev.
Future<void> main(List<String> args, SendPort port) async {
await runDartdev(args, port);
}