blob: 540142ae8d8a769a934923dca14a8ab0811b5a3e [file] [log] [blame]
Vyacheslav Egorov8af4a2e2016-07-07 18:05:061#!/usr/bin/env dart
2// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
3// for details. All rights reserved. Use of this source code is governed by a
4// BSD-style license that can be found in the LICENSE file.
5
6import 'package:kernel/kernel.dart';
7
8main(args) {
9 var binary = loadProgramFromBinary(args[0]);
Asger Feldthaus3ac36ac2016-10-04 11:30:4610 writeProgramToText(binary, path: args[1]);
Vyacheslav Egorov8af4a2e2016-07-07 18:05:0611}