| Index: pkg/compiler/lib/src/tree/unparser.dart
|
| diff --git a/pkg/compiler/lib/src/tree/unparser.dart b/pkg/compiler/lib/src/tree/unparser.dart
|
| index fd00ba31403da964a071ded52d16b0a3c7bc27de..a0156be47b4ff3e5288c818fe8f4328f533b0bb9 100644
|
| --- a/pkg/compiler/lib/src/tree/unparser.dart
|
| +++ b/pkg/compiler/lib/src/tree/unparser.dart
|
| @@ -698,6 +698,11 @@ class Unparser extends Indentation implements Visitor {
|
| indentLess();
|
| }
|
|
|
| + unparseLibraryName(String libraryName) {
|
| + write('library $libraryName;');
|
| + newline();
|
| + }
|
| +
|
| unparseImportTag(String uri, {String prefix,
|
| List<String> shows: const <String>[],
|
| bool isDeferred: false}) {
|
|
|