| Index: sdk/lib/_internal/compiler/implementation/js/printer.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/js/printer.dart b/sdk/lib/_internal/compiler/implementation/js/printer.dart
|
| index b2c7e8be078f8212876f4963bf558bdd5dcd5bc0..975cbf6dd43ba44f12bd45edf1f812c0c35fb082 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/js/printer.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/js/printer.dart
|
| @@ -887,6 +887,10 @@ class Printer implements NodeVisitor {
|
| visit(node.value);
|
| }
|
|
|
| + visitInterpolatedStatement(InterpolatedStatement node) {
|
| + visit(node.value);
|
| + }
|
| +
|
| void visitComment(Comment node) {
|
| if (shouldCompressOutput) return;
|
| String comment = node.comment.trim();
|
|
|