| 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 42d6f8239048811ff87619e84c0f1d21b2e4546e..d717c1103b51ebcf795147b9a6687e917d59614a 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java
|
| @@ -38,18 +38,7 @@ public class DartRedirectConstructorInvocation extends DartInvocation implements
|
| }
|
|
|
| @Override
|
| - public void traverse(DartVisitor v, DartContext ctx) {
|
| - if (v.visit(this, ctx)) {
|
| - if (name != null) {
|
| - name = becomeParentOf(v.accept(name));
|
| - }
|
| - v.acceptWithInsertRemove(this, getArgs());
|
| - }
|
| - v.endVisit(this, ctx);
|
| - }
|
| -
|
| - @Override
|
| - public void visitChildren(DartPlainVisitor<?> visitor) {
|
| + public void visitChildren(ASTVisitor<?> visitor) {
|
| if (name != null) {
|
| name.accept(visitor);
|
| }
|
| @@ -57,7 +46,7 @@ public class DartRedirectConstructorInvocation extends DartInvocation implements
|
| }
|
|
|
| @Override
|
| - public <R> R accept(DartPlainVisitor<R> visitor) {
|
| + public <R> R accept(ASTVisitor<R> visitor) {
|
| return visitor.visitRedirectConstructorInvocation(this);
|
| }
|
| }
|
|
|