| Index: lib/compiler/implementation/tree/unparser.dart
|
| diff --git a/lib/compiler/implementation/tree/unparser.dart b/lib/compiler/implementation/tree/unparser.dart
|
| index f4009b20fdc053ab6a6ac950dc74f0022402c051..0f667e7b68aef00560f4cb72a649a9d7e553d813 100644
|
| --- a/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/lib/compiler/implementation/tree/unparser.dart
|
| @@ -470,6 +470,9 @@ class Unparser implements Visitor {
|
| }
|
|
|
| visitCatchBlock(CatchBlock node) {
|
| + addToken(node.onKeyword);
|
| + visit(node.type);
|
| + sb.add(' ');
|
| addToken(node.catchKeyword);
|
| visit(node.formals);
|
| sb.add(' ');
|
|
|