| Index: lib/compiler/implementation/tree/unparser.dart
|
| diff --git a/lib/compiler/implementation/tree/unparser.dart b/lib/compiler/implementation/tree/unparser.dart
|
| index 0f667e7b68aef00560f4cb72a649a9d7e553d813..96dc318a7fcd685bb121625c9c06a1894010f1db 100644
|
| --- a/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/lib/compiler/implementation/tree/unparser.dart
|
| @@ -130,7 +130,9 @@ class Unparser implements Visitor {
|
| sb.add('.');
|
| } else {
|
| visit(send.receiver);
|
| - if (send.selector.token.kind === KEYWORD_TOKEN) sb.add(' ');
|
| + if (send.selector.asIdentifier().token.kind === KEYWORD_TOKEN) {
|
| + sb.add(' ');
|
| + }
|
| }
|
| visit(send.selector);
|
| } else {
|
|
|