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

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

Issue 11312081: Issue 6251. Resolve and rename [id] references in documentation comments (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
Index: compiler/java/com/google/dart/compiler/ast/DartDeclaration.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartDeclaration.java b/compiler/java/com/google/dart/compiler/ast/DartDeclaration.java
index 0c13470a642ae272d53210be992ec0c6c1070bb6..5080bb172fef9268c22b6f5db996993ddbaa6091 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartDeclaration.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartDeclaration.java
@@ -47,6 +47,7 @@ public abstract class DartDeclaration<N extends DartExpression> extends DartNode
@Override
public void visitChildren(ASTVisitor<?> visitor) {
+ safelyVisitChild(dartDoc, visitor);
super.visitChildren(visitor);
safelyVisitChild(name, visitor);
}

Powered by Google App Engine
This is Rietveld 408576698