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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ForStatement.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
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ForStatement.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ForStatement.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ForStatement.java (working copy)
@@ -18,7 +18,7 @@
import java.util.List;
/**
- * Instances of the class <code>ForStatement</code> represent a for statement.
+ * Instances of the class {@code ForStatement} represent a for statement.
*
* <pre>
* forStatement ::=
@@ -44,16 +44,16 @@
private Token leftParenthesis;
/**
- * The declaration of the loop variables, or <code>null</code> if there are no variables. Note
- * that a for statement cannot have both a variable list and an initialization expression, but can
+ * The declaration of the loop variables, or {@code null} if there are no variables. Note that a
+ * for statement cannot have both a variable list and an initialization expression, but can
* validly have neither.
*/
private VariableDeclarationList variableList;
/**
- * The initialization expression, or <code>null</code> if there is no initialization expression.
- * Note that a for statement cannot have both a variable list and an initialization expression,
- * but can validly have neither.
+ * The initialization expression, or {@code null} if there is no initialization expression. Note
+ * that a for statement cannot have both a variable list and an initialization expression, but can
+ * validly have neither.
*/
private Expression initialization;
@@ -166,8 +166,7 @@
}
/**
- * Return the initialization expression, or <code>null</code> if there is no initialization
- * expression.
+ * Return the initialization expression, or {@code null} if there is no initialization expression.
*
* @return the initialization expression
*/
@@ -221,9 +220,9 @@
}
/**
- * Return the declaration of the loop variables, or <code>null</code> if there are no variables.
+ * Return the declaration of the loop variables, or {@code null} if there are no variables.
*
- * @return the declaration of the loop variables, or <code>null</code> if there are no variables
+ * @return the declaration of the loop variables, or {@code null} if there are no variables
*/
public VariableDeclarationList getVariables() {
return variableList;

Powered by Google App Engine
This is Rietveld 408576698