| Index: pkg/front_end/lib/src/fasta/compile_platform.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/compile_platform.dart b/pkg/front_end/lib/src/fasta/compile_platform.dart
|
| index 6774aede7ed5b82a4e3105284e9e84e1f38d2abb..c8f2a193ef532efe02dd827d51d3a87b5088c7af 100644
|
| --- a/pkg/front_end/lib/src/fasta/compile_platform.dart
|
| +++ b/pkg/front_end/lib/src/fasta/compile_platform.dart
|
| @@ -24,8 +24,6 @@ import 'dill/dill_target.dart' show DillTarget;
|
|
|
| import 'translate_uri.dart' show TranslateUri;
|
|
|
| -import 'ast_kind.dart' show AstKind;
|
| -
|
| Future main(List<String> arguments) async {
|
| Ticker ticker = new Ticker();
|
| try {
|
| @@ -60,7 +58,7 @@ Future compilePlatform(CompilerContext c, Ticker ticker) async {
|
| await kernelTarget.writeOutline(output);
|
|
|
| if (exitCode != 0) return null;
|
| - await kernelTarget.writeProgram(output, AstKind.Kernel);
|
| + await kernelTarget.writeProgram(output);
|
| if (c.options.dumpIr) {
|
| kernelTarget.dumpIr();
|
| }
|
|
|