| Index: compiler/java/com/google/dart/compiler/ast/DartContinueStatement.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartContinueStatement.java b/compiler/java/com/google/dart/compiler/ast/DartContinueStatement.java
|
| index fbd6cccbaffe2a6621b44c12c923f2d9487e41c0..afe0816465fe351d1d08d015674ea51275e12dff 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartContinueStatement.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartContinueStatement.java
|
| @@ -19,16 +19,7 @@ public class DartContinueStatement extends DartGotoStatement {
|
| }
|
|
|
| @Override
|
| - public void traverse(DartVisitor v, DartContext ctx) {
|
| - DartIdentifier label = getLabel();
|
| - if (v.visit(this, ctx) && label != null) {
|
| - label = becomeParentOf(v.accept(label));
|
| - }
|
| - v.endVisit(this, ctx);
|
| - }
|
| -
|
| - @Override
|
| - public <R> R accept(DartPlainVisitor<R> visitor) {
|
| + public <R> R accept(ASTVisitor<R> visitor) {
|
| return visitor.visitContinueStatement(this);
|
| }
|
| }
|
|
|