| Index: compiler/java/com/google/dart/compiler/ast/DartInvocation.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartInvocation.java b/compiler/java/com/google/dart/compiler/ast/DartInvocation.java
|
| index b853fcfaea873fd7f9e192de09cdac1185ee9f81..4d81c2887c4bc322284965db9e9eb3f1db4e9826 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartInvocation.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartInvocation.java
|
| @@ -5,6 +5,7 @@
|
| package com.google.dart.compiler.ast;
|
|
|
| import com.google.dart.compiler.resolver.Element;
|
| +import com.google.dart.compiler.resolver.NodeElement;
|
|
|
| import java.util.List;
|
|
|
| @@ -35,7 +36,7 @@ import java.util.List;
|
| public abstract class DartInvocation extends DartExpression {
|
|
|
| private final NodeList<DartExpression> arguments = NodeList.create(this);
|
| - private Element element;
|
| + private NodeElement element;
|
|
|
| public DartInvocation(List<DartExpression> arguments) {
|
| this.arguments.addAll(arguments);
|
| @@ -50,12 +51,12 @@ public abstract class DartInvocation extends DartExpression {
|
| }
|
|
|
| @Override
|
| - public Element getElement() {
|
| + public NodeElement getElement() {
|
| return element;
|
| }
|
|
|
| @Override
|
| public void setElement(Element element) {
|
| - this.element = (Element) element;
|
| + this.element = (NodeElement) element;
|
| }
|
| }
|
|
|