Index: pkg/compiler/lib/src/js/js_debug.dart |
diff --git a/pkg/compiler/lib/src/js/js_debug.dart b/pkg/compiler/lib/src/js/js_debug.dart |
index c8cbd0de1636c1b6e7aeb8cb20bcd54bc9209e4a..8851aa6ce2239c94a56f9f9653bf1fe3fbeea0ae 100644 |
--- a/pkg/compiler/lib/src/js/js_debug.dart |
+++ b/pkg/compiler/lib/src/js/js_debug.dart |
@@ -8,19 +8,15 @@ library js.debug; |
import 'package:js_ast/js_ast.dart'; |
-import '../io/code_output.dart' show |
- BufferedCodeOutput; |
-import '../util/util.dart' show |
- Indentation, |
- Tagging; |
+import '../io/code_output.dart' show BufferedCodeOutput; |
+import '../util/util.dart' show Indentation, Tagging; |
/// Unparse the JavaScript [node]. |
String nodeToString(Node node) { |
JavaScriptPrintingOptions options = new JavaScriptPrintingOptions( |
shouldCompressOutput: true, |
preferSemicolonToNewlineInMinifiedOutput: true); |
- LenientPrintingContext printingContext = |
- new LenientPrintingContext(); |
+ LenientPrintingContext printingContext = new LenientPrintingContext(); |
new Printer(options, printingContext).visit(node); |
return printingContext.getText(); |
} |