Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(725)

Unified Diff: compiler/java/com/google/dart/compiler/ast/DartGotoStatement.java

Issue 9598002: Use ASTVisitor as in new AST. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: compiler/java/com/google/dart/compiler/ast/DartGotoStatement.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartGotoStatement.java b/compiler/java/com/google/dart/compiler/ast/DartGotoStatement.java
index 5ad227f54b3b99a23db5930bedb5c139804ff29b..b63e68c7c33ac96c2af8cc2ac6043e5a5e536945 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartGotoStatement.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartGotoStatement.java
@@ -43,7 +43,7 @@ public abstract class DartGotoStatement extends DartStatement {
}
@Override
- public void visitChildren(DartPlainVisitor<?> visitor) {
+ public void visitChildren(ASTVisitor<?> visitor) {
if (label != null) {
label.accept(visitor);
}

Powered by Google App Engine
This is Rietveld 408576698