| Index: compiler/java/com/google/dart/compiler/ast/DartSyntheticErrorStatement.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartSyntheticErrorStatement.java b/compiler/java/com/google/dart/compiler/ast/DartSyntheticErrorStatement.java
|
| index 8f5343600353dc1f7c466d083d0c5f0cb91b1ae9..5b7c5c4b131be0a36817e1342ac625a30a0d00b9 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartSyntheticErrorStatement.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartSyntheticErrorStatement.java
|
| @@ -19,7 +19,7 @@ public class DartSyntheticErrorStatement extends DartStatement {
|
| }
|
|
|
| @Override
|
| - public <R> R accept(DartPlainVisitor<R> visitor) {
|
| + public <R> R accept(ASTVisitor<R> visitor) {
|
| return visitor.visitSyntheticErrorStatement(this);
|
| }
|
|
|
| @@ -28,12 +28,6 @@ public class DartSyntheticErrorStatement extends DartStatement {
|
| }
|
|
|
| @Override
|
| - public void traverse(DartVisitor v, DartContext ctx) {
|
| - v.visit(this, ctx);
|
| - v.endVisit(this, ctx);
|
| - }
|
| -
|
| - @Override
|
| - public void visitChildren(DartPlainVisitor<?> visitor) {
|
| + public void visitChildren(ASTVisitor<?> visitor) {
|
| }
|
| }
|
|
|