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

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

Issue 11377039: Issue 6251. Resolve and rename type and constructor references in [new Type.name]. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/ast/DartComment.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/java/com/google/dart/compiler/ast/ASTVisitor.java
diff --git a/compiler/java/com/google/dart/compiler/ast/ASTVisitor.java b/compiler/java/com/google/dart/compiler/ast/ASTVisitor.java
index 4254db7fef0a09fd574b5410e4ac1496b46dd3bf..e125b1e2916b6636faf2d19d49627526be6dda73 100644
--- a/compiler/java/com/google/dart/compiler/ast/ASTVisitor.java
+++ b/compiler/java/com/google/dart/compiler/ast/ASTVisitor.java
@@ -84,6 +84,14 @@ public class ASTVisitor<R> {
public R visitComment(DartComment node) {
return visitNode(node);
}
+
+ public R visitCommentNewName(DartCommentNewName node) {
+ return visitNode(node);
+ }
+
+ public R visitCommentRefName(DartCommentRefName node) {
+ return visitNode(node);
+ }
public R visitAnnotation(DartAnnotation node) {
return visitNode(node);
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/ast/DartComment.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698