| Index: lib/compiler/implementation/tree/unparser.dart
|
| diff --git a/lib/compiler/implementation/tree/unparser.dart b/lib/compiler/implementation/tree/unparser.dart
|
| index c246dc7e6bfc7eb3094067502fb8950c8b4bc811..5b3b5c511eca2ede0dbc5a6217553a0c703f740f 100644
|
| --- a/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/lib/compiler/implementation/tree/unparser.dart
|
| @@ -236,6 +236,9 @@ class Unparser implements Visitor {
|
| }
|
|
|
| visitReturn(Return node) {
|
| + if (node.isRedirectingConstructorBody) {
|
| + sb.add(' ');
|
| + }
|
| add(node.beginToken.value);
|
| if (node.hasExpression && node.beginToken.stringValue != '=>') {
|
| sb.add(' ');
|
|
|