| Index: lib/compiler/implementation/tree/unparser.dart
|
| diff --git a/lib/compiler/implementation/tree/unparser.dart b/lib/compiler/implementation/tree/unparser.dart
|
| index 6349c30a1a290d1ddc24bb81f403ac5db1786ddb..05b24260254451bb67f314f740ba13b5e4956b95 100644
|
| --- a/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/lib/compiler/implementation/tree/unparser.dart
|
| @@ -313,8 +313,7 @@ class Unparser implements Visitor {
|
| }
|
|
|
| visitLabeledStatement(LabeledStatement node) {
|
| - visit(node.label);
|
| - sb.add(' ');
|
| + visit(node.labels);
|
| visit(node.statement);
|
| }
|
|
|
|
|