Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: pkg/compiler/lib/src/tree/unparser.dart

Issue 1335983004: Add ImportElement and ExportElement (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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}) {

Powered by Google App Engine
This is Rietveld 408576698