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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java

Issue 10700082: Comment clean-up (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTVisitor.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java (working copy)
@@ -16,12 +16,12 @@
import com.google.dart.engine.scanner.Token;
/**
- * The abstract class <code>ASTNode</code> defines the behavior common to all nodes in the AST
- * structure for a Dart program.
+ * The abstract class {@code ASTNode} defines the behavior common to all nodes in the AST structure
+ * for a Dart program.
*/
public abstract class ASTNode {
/**
- * The parent of the node, or <code>null</code> if the node is the root of an AST structure.
+ * The parent of the node, or {@code null} if the node is the root of an AST structure.
*/
private ASTNode parent;
@@ -69,13 +69,12 @@
}
/**
- * Return this node's parent node, or <code>null</code> if this node is the root of an AST
- * structure.
+ * Return this node's parent node, or {@code null} if this node is the root of an AST structure.
* <p>
* Note that the relationship between an AST node and its parent node may change over the lifetime
* of a node.
*
- * @return the parent of this node, or <code>null</code> if none
+ * @return the parent of this node, or {@code null} if none
*/
public final ASTNode getParent() {
return parent;
@@ -120,7 +119,7 @@
}
/**
- * If the given child is not <code>null</code>, use the given visitor to visit it.
+ * If the given child is not {@code null}, use the given visitor to visit it.
*
* @param child the child to be visited
* @param visitor the visitor that will be used to visit the child
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTVisitor.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698