| Index: compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java b/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java
|
| index f7945b72afbdfec421a08b74a74674da42a0cf5d..3cc1e59e261dbcea3aa32b4025510c6c9e6cc7c1 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java
|
| @@ -4,7 +4,7 @@
|
|
|
| package com.google.dart.compiler.ast;
|
|
|
| -import com.google.dart.compiler.resolver.ConstructorElement;
|
| +import com.google.dart.compiler.resolver.ConstructorNodeElement;
|
| import com.google.dart.compiler.resolver.Element;
|
|
|
| import java.util.List;
|
| @@ -15,7 +15,7 @@ import java.util.List;
|
| public class DartRedirectConstructorInvocation extends DartInvocation {
|
|
|
| private DartIdentifier name;
|
| - private ConstructorElement element;
|
| + private ConstructorNodeElement element;
|
|
|
| public DartRedirectConstructorInvocation(DartIdentifier name, List<DartExpression> args) {
|
| super(args);
|
| @@ -28,11 +28,11 @@ public class DartRedirectConstructorInvocation extends DartInvocation {
|
|
|
| @Override
|
| public void setElement(Element element) {
|
| - this.element = (ConstructorElement) element;
|
| + this.element = (ConstructorNodeElement) element;
|
| }
|
|
|
| @Override
|
| - public ConstructorElement getElement() {
|
| + public ConstructorNodeElement getElement() {
|
| return element;
|
| }
|
|
|
|
|