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

Unified Diff: compiler/java/com/google/dart/compiler/ast/DartSwitchMember.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/DartSwitchMember.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartSwitchMember.java b/compiler/java/com/google/dart/compiler/ast/DartSwitchMember.java
index 8bf0a0daff652285862e9dfa48034c299cbb3a4c..e3cf4b8c9d7cc07ad9e7e7dbf0e41a4659ef5c7d 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartSwitchMember.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartSwitchMember.java
@@ -32,7 +32,7 @@ public abstract class DartSwitchMember extends DartNode {
}
@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