| Index: pkg/compiler/lib/src/js/printer.dart
|
| diff --git a/pkg/compiler/lib/src/js/printer.dart b/pkg/compiler/lib/src/js/printer.dart
|
| index 6ee3f3ecf4df70108506f7786ea3d789019b3c0c..b1acebaa8f82e18b0159660b79714a7ba7637f7c 100644
|
| --- a/pkg/compiler/lib/src/js/printer.dart
|
| +++ b/pkg/compiler/lib/src/js/printer.dart
|
| @@ -969,6 +969,10 @@ class Printer implements NodeVisitor {
|
| outLn('#${node.nameOrPosition}');
|
| }
|
|
|
| + visitInterpolatedDeclaration(InterpolatedDeclaration node) {
|
| + visitInterpolatedNode(node);
|
| + }
|
| +
|
| void visitComment(Comment node) {
|
| if (shouldCompressOutput) return;
|
| String comment = node.comment.trim();
|
|
|