dart-sdk/pkg/dev_compiler/tool/compile_dartdevc_sdk.dart
Nicholas Shahan a710f9727d [ddc] Migrate compile sdk script to null safety
Issue: https://github.com/dart-lang/sdk/issues/46617
Change-Id: I48dcf20dc3cada2bd9d0c9dfb0e1f27f07d5e521
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/250350
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Commit-Queue: Nicholas Shahan <nshahan@google.com>
2022-07-19 19:35:24 +00:00

16 lines
542 B
Dart

#!/usr/bin/env dart
// Copyright (c) 2019, 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.
/// Tool that consumes the .dill file of an entire dart-sdk and produces the
/// corresponding Javascript module.
import 'dart:io';
import 'package:dev_compiler/src/kernel/command.dart';
void main(List<String> args) async {
var result = await compileSdkFromDill(args);
exitCode = result.exitCode;
}