| Index: lib/compiler/implementation/tree/unparser.dart
|
| diff --git a/lib/compiler/implementation/tree/unparser.dart b/lib/compiler/implementation/tree/unparser.dart
|
| index 759fbe4442b0152270394a50d0e4025f8aacd097..315dd2f9a4f3a765d153d2e25ffff2efb333ab7f 100644
|
| --- a/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/lib/compiler/implementation/tree/unparser.dart
|
| @@ -333,7 +333,9 @@ class Unparser implements Visitor {
|
| add(node.forToken.value);
|
| sb.add(' (');
|
| visit(node.declaredIdentifier);
|
| + sb.add(' ');
|
| add(node.inToken.value);
|
| + sb.add(' ');
|
| visit(node.expression);
|
| sb.add(') ');
|
| visit(node.body);
|
|
|