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

Unified Diff: compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.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/viz/BaseASTWriter.java
diff --git a/compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.java b/compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.java
index bfd34dbdb8e8226440d5b1c16d464527f223e0ba..28c68dc89717e98703b9d3b40967695552b21b6d 100644
--- a/compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.java
+++ b/compiler/java/com/google/dart/compiler/ast/viz/BaseASTWriter.java
@@ -48,7 +48,7 @@ import com.google.dart.compiler.ast.DartNativeBlock;
import com.google.dart.compiler.ast.DartNativeDirective;
import com.google.dart.compiler.ast.DartNewExpression;
import com.google.dart.compiler.ast.DartNode;
-import com.google.dart.compiler.ast.DartNodeTraverser;
+import com.google.dart.compiler.ast.ASTVisitor;
import com.google.dart.compiler.ast.DartNullLiteral;
import com.google.dart.compiler.ast.DartParameter;
import com.google.dart.compiler.ast.DartParameterizedTypeNode;
@@ -160,7 +160,7 @@ public abstract class BaseASTWriter {
return false;
}
- class ASTNodeTraverser extends DartNodeTraverser<Object> {
+ class ASTNodeTraverser extends ASTVisitor<Object> {
@Override
public void visit(List<? extends DartNode> nodes) {

Powered by Google App Engine
This is Rietveld 408576698