| Index: compiler/java/com/google/dart/compiler/resolver/Elements.java
|
| diff --git a/compiler/java/com/google/dart/compiler/resolver/Elements.java b/compiler/java/com/google/dart/compiler/resolver/Elements.java
|
| index 9acdb69a76bd21fe091fce04854ae38733fdbec7..34bbcf020df84e50e5f18a2e4aae2e81aead37d3 100644
|
| --- a/compiler/java/com/google/dart/compiler/resolver/Elements.java
|
| +++ b/compiler/java/com/google/dart/compiler/resolver/Elements.java
|
| @@ -606,7 +606,7 @@ static FieldElementImplementation fieldFromNode(DartField node,
|
| * or if it is on the left hand side of an assignment and uses one of the assignment
|
| * operators other than plain '='.
|
| */
|
| - public static boolean inGetterContext(DartPropertyAccess node) {
|
| + public static boolean inGetterContext(DartNode node) {
|
| if (node.getParent() instanceof DartBinaryExpression) {
|
| DartBinaryExpression expr = (DartBinaryExpression) node.getParent();
|
| if (Token.ASSIGN.equals(expr.getOperator()) && expr.getArg1() == node) {
|
|
|