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

Unified Diff: compiler/java/com/google/dart/compiler/ast/DartComment.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/DartComment.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartComment.java b/compiler/java/com/google/dart/compiler/ast/DartComment.java
index 2f8cbae1253303f5b9a90b69b48872a93388b382..4e25c0492ed9fe56169a41aafcf1248bc420c904 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartComment.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartComment.java
@@ -49,15 +49,11 @@ public class DartComment extends DartNode {
}
@Override
- public void traverse(DartVisitor v, DartContext 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 null;
}

Powered by Google App Engine
This is Rietveld 408576698