| 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..2be5cb97a73c7427389696f3d40385c8a7da0efa 100644
|
| --- a/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/lib/compiler/implementation/tree/unparser.dart
|
| @@ -107,6 +107,7 @@ class Unparser implements Visitor {
|
| visit(node.thenPart);
|
| if (node.hasElsePart) {
|
| add(node.elseToken.value);
|
| + sb.add(' ');
|
| visit(node.elsePart);
|
| }
|
| }
|
|
|