| Index: compiler/java/com/google/dart/compiler/ast/DartTypeNode.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartTypeNode.java b/compiler/java/com/google/dart/compiler/ast/DartTypeNode.java
|
| index 58cf8b0f464b586594fe398ad161fb13ba27ce42..b6ccbd330b6cc834b656ea8998f86de423fef718 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartTypeNode.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartTypeNode.java
|
| @@ -46,22 +46,13 @@ public class DartTypeNode extends DartNode {
|
| }
|
|
|
| @Override
|
| - public void traverse(DartVisitor v, DartContext ctx) {
|
| - if (v.visit(this, ctx)) {
|
| - identifier = becomeParentOf(v.accept(identifier));
|
| - v.acceptWithInsertRemove(this, typeArguments);
|
| - }
|
| - v.endVisit(this, ctx);
|
| - }
|
| -
|
| - @Override
|
| - public void visitChildren(DartPlainVisitor<?> visitor) {
|
| + public void visitChildren(ASTVisitor<?> visitor) {
|
| identifier.accept(visitor);
|
| visitor.visit(typeArguments);
|
| }
|
|
|
| @Override
|
| - public <R> R accept(DartPlainVisitor<R> visitor) {
|
| + public <R> R accept(ASTVisitor<R> visitor) {
|
| return visitor.visitTypeNode(this);
|
| }
|
| }
|
|
|