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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/FunctionExpression.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/FunctionExpression.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/FunctionExpression.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/FunctionExpression.java (working copy)
@@ -16,7 +16,7 @@
import com.google.dart.engine.scanner.Token;
/**
- * Instances of the class <code>FunctionExpression</code> represent a function expression.
+ * Instances of the class {@code FunctionExpression} represent a function expression.
*
* <pre>
* functionExpression ::=
@@ -25,12 +25,12 @@
*/
public class FunctionExpression extends Expression {
/**
- * The return type of the function, or <code>null</code> if no return type was declared.
+ * The return type of the function, or {@code null} if no return type was declared.
*/
private TypeName returnType;
/**
- * The name of the function, or <code>null</code> if the function is not named.
+ * The name of the function, or {@code null} if the function is not named.
*/
private SimpleIdentifier name;
@@ -96,7 +96,7 @@
}
/**
- * Return the name of the function, or <code>null</code> if the function is not named.
+ * Return the name of the function, or {@code null} if the function is not named.
*
* @return the name of the function
*/
@@ -114,7 +114,7 @@
}
/**
- * Return the return type of the function, or <code>null</code> if no return type was declared.
+ * Return the return type of the function, or {@code null} if no return type was declared.
*
* @return the return type of the function
*/

Powered by Google App Engine
This is Rietveld 408576698