| Index: lib/compiler/implementation/tree/unparser.dart
|
| diff --git a/lib/compiler/implementation/tree/unparser.dart b/lib/compiler/implementation/tree/unparser.dart
|
| index e16c57b9a9f33c232acab4d84c5bc44b77465b21..972e41860049cf9daf5cc6f9f2661af09e011e86 100644
|
| --- a/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/lib/compiler/implementation/tree/unparser.dart
|
| @@ -473,7 +473,7 @@ class Unparser implements Visitor {
|
| }
|
|
|
| visitTryStatement(TryStatement node) {
|
| - add(node.tryKeyword.value);
|
| + addToken(node.tryKeyword);
|
| visit(node.tryBlock);
|
| visit(node.catchBlocks);
|
| if (node.finallyKeyword !== null) {
|
| @@ -495,7 +495,7 @@ class Unparser implements Visitor {
|
| visit(node.type);
|
| sb.add(' ');
|
| }
|
| - add(node.catchKeyword.value);
|
| + addToken(node.catchKeyword);
|
| visit(node.formals);
|
| visit(node.block);
|
| }
|
|
|