| Index: compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java b/compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java
|
| index 9c35c942c5cd3b7bc38c34a002e658be2e2fe34f..f4bbcaca7161355976dbb25eb17c9e14c2d6dda1 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartDoubleLiteral.java
|
| @@ -24,17 +24,11 @@ public class DartDoubleLiteral extends DartLiteral {
|
| }
|
|
|
| @Override
|
| - public void traverse(DartVisitor v, DartContext ctx) {
|
| - v.visit(this, ctx);
|
| - v.endVisit(this, ctx);
|
| + public void visitChildren(ASTVisitor<?> visitor) {
|
| }
|
|
|
| @Override
|
| - public void visitChildren(DartPlainVisitor<?> visitor) {
|
| - }
|
| -
|
| - @Override
|
| - public <R> R accept(DartPlainVisitor<R> visitor) {
|
| + public <R> R accept(ASTVisitor<R> visitor) {
|
| return visitor.visitDoubleLiteral(this);
|
| }
|
| }
|
|
|