| Index: compiler/java/com/google/dart/compiler/ast/DartSuperConstructorInvocation.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartSuperConstructorInvocation.java b/compiler/java/com/google/dart/compiler/ast/DartSuperConstructorInvocation.java
|
| index dff69178cba049e0a7a09d3bd324aefe90d21fcb..7d6bc9eeb9484058f9054e2a9af1da502c3d2957 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartSuperConstructorInvocation.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartSuperConstructorInvocation.java
|
| @@ -49,18 +49,7 @@ public class DartSuperConstructorInvocation extends DartInvocation implements Ha
|
| }
|
|
|
| @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);
|
| }
|
| @@ -68,7 +57,7 @@ public class DartSuperConstructorInvocation extends DartInvocation implements Ha
|
| }
|
|
|
| @Override
|
| - public <R> R accept(DartPlainVisitor<R> visitor) {
|
| + public <R> R accept(ASTVisitor<R> visitor) {
|
| return visitor.visitSuperConstructorInvocation(this);
|
| }
|
| }
|
|
|