808fa4ca8b
Change-Id: I5b7348fb4adb4e7f4039c91d54d712c1eb131ecf Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/395002 Reviewed-by: Jens Johansen <jensj@google.com> Reviewed-by: Slava Egorov <vegorov@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
8 lines
332 B
Dart
8 lines
332 B
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 'entry_points.dart' show batchEntryPoint;
|
|
|
|
void main(List<String> arguments) => batchEntryPoint(arguments);
|