| Index: pkg/front_end/lib/src/fasta/target.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/target.dart b/pkg/front_end/lib/src/fasta/target.dart
|
| index 20c59f227f0a32aa2384a0a59a5f70c81c95d0f1..76f8ad3569a35e62f601ad0a03aa02013056b8a5 100644
|
| --- a/pkg/front_end/lib/src/fasta/target.dart
|
| +++ b/pkg/front_end/lib/src/fasta/target.dart
|
| @@ -8,8 +8,6 @@ import 'dart:async' show Future;
|
|
|
| import 'ticker.dart' show Ticker;
|
|
|
| -import 'ast_kind.dart' show AstKind;
|
| -
|
| /// A compilation target.
|
| ///
|
| /// A target reads source files with [read] and writes out the resulting
|
| @@ -23,7 +21,7 @@ abstract class Target {
|
| void read(Uri uri);
|
|
|
| /// Write the resulting program in the file [uri].
|
| - Future writeProgram(Uri uri, AstKind astKind);
|
| + Future writeProgram(Uri uri);
|
|
|
| /// Write the resulting outline in the file [uri].
|
| Future writeOutline(Uri uri);
|
|
|