| Index: lib/compiler/implementation/tree/nodes.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/tree/nodes.dart (revision 8424)
|
| +++ lib/compiler/implementation/tree/nodes.dart (working copy)
|
| @@ -270,6 +270,7 @@
|
| bool get isPostfix() => argumentsNode is Postfix;
|
| bool get isIndex() =>
|
| isOperator && selector.asOperator().source.stringValue === '[]';
|
| + bool get isCall() => !isOperator && !isPropertyAccess;
|
|
|
| Token getBeginToken() {
|
| if (isPrefix && !isIndex) return selector.getBeginToken();
|
|
|