| Index: lib/compiler/implementation/dart_backend/utils.dart
|
| diff --git a/lib/compiler/implementation/dart_backend/utils.dart b/lib/compiler/implementation/dart_backend/utils.dart
|
| index 4f56bce14c9baf27cbd9fdfbc2a0898bf3488092..20d506d5fed1d314590370a24660d71a1bc422c2 100644
|
| --- a/lib/compiler/implementation/dart_backend/utils.dart
|
| +++ b/lib/compiler/implementation/dart_backend/utils.dart
|
| @@ -128,11 +128,11 @@ class CloningVisitor implements Visitor<Node> {
|
| // Special case for classes which exist in hierarchy, but not
|
| // in the visitor.
|
| if (node is Prefix) {
|
| - return node.nodes.isEmpty() ?
|
| + return node.nodes.isEmpty ?
|
| new Prefix() : new Prefix.singleton(visit(node.nodes.head));
|
| }
|
| if (node is Postfix) {
|
| - return node.nodes.isEmpty() ?
|
| + return node.nodes.isEmpty ?
|
| new Postfix() : new Postfix.singleton(visit(node.nodes.head));
|
| }
|
| LinkBuilder<Node> builder = new LinkBuilder<Node>();
|
|
|