| 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 1a512cf8dd48fc96ae617c9ba241b031bba77a1b..f64bdfb0840752ab5bb41694424df10571d14492 100644
|
| --- a/pkg/compiler/lib/src/js/printer.dart
|
| +++ b/pkg/compiler/lib/src/js/printer.dart
|
| @@ -874,7 +874,7 @@ class Printer extends Indentation implements NodeVisitor {
|
| }
|
|
|
| visitInterpolatedNode(InterpolatedNode node) {
|
| - out('#${node.name}');
|
| + out('#${node.nameOrPosition}');
|
| }
|
|
|
| visitInterpolatedExpression(InterpolatedExpression node) =>
|
| @@ -890,7 +890,7 @@ class Printer extends Indentation implements NodeVisitor {
|
| visitInterpolatedNode(node);
|
|
|
| visitInterpolatedStatement(InterpolatedStatement node) {
|
| - outLn('#${node.name}');
|
| + outLn('#${node.nameOrPosition}');
|
| }
|
|
|
| void visitComment(Comment node) {
|
|
|