mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
bd3cfd6979
BUG= R=kmillikin@google.com Review-Url: https://codereview.chromium.org/2740433006 .
22 lines
658 B
Dart
Executable file
22 lines
658 B
Dart
Executable file
#!/usr/bin/env dart
|
|
// Copyright (c) 2017, 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:kernel/kernel.dart';
|
|
import 'package:kernel/interpreter/interpreter.dart';
|
|
import 'dart:io';
|
|
|
|
fail(String message) {
|
|
stderr.writeln(message);
|
|
exit(1);
|
|
}
|
|
|
|
main(List<String> args) {
|
|
if (args.length == 1 && args[0].endsWith('.dill')) {
|
|
var program = loadProgramFromBinary(args[0]);
|
|
new Interpreter(program).run();
|
|
} else {
|
|
return fail('One input binary file should be specified.');
|
|
}
|
|
}
|