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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TypedLiteral.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/TypedLiteral.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TypedLiteral.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/TypedLiteral.java (working copy)
@@ -16,8 +16,8 @@
import com.google.dart.engine.scanner.Token;
/**
- * The abstract class <code>TypedLiteral</code> defines the behavior common to literals that have a
- * type associated with them.
+ * The abstract class {@code TypedLiteral} defines the behavior common to literals that have a type
+ * associated with them.
*
* <pre>
* listLiteral ::=
@@ -27,13 +27,13 @@
*/
public abstract class TypedLiteral extends Literal {
/**
- * The const modifier associated with this literal, or <code>null</code> if the literal is not a
+ * The const modifier associated with this literal, or {@code null} if the literal is not a
* constant.
*/
private Token modifier;
/**
- * The type argument associated with this literal, or <code>null</code> if no type arguments were
+ * The type argument associated with this literal, or {@code null} if no type arguments were
* declared.
*/
private TypeArgumentList typeArguments;
@@ -48,8 +48,8 @@
* Initialize a newly created typed literal.
*
* @param modifier the const modifier associated with this literal
- * @param typeArguments the type argument associated with this literal, or <code>null</code> if no
- * type arguments were declared
+ * @param typeArguments the type argument associated with this literal, or {@code null} if no type
+ * arguments were declared
*/
public TypedLiteral(Token modifier, TypeArgumentList typeArguments) {
this.modifier = modifier;
@@ -66,8 +66,8 @@
}
/**
- * Return the type argument associated with this literal, or <code>null</code> if no type
- * arguments were declared.
+ * Return the type argument associated with this literal, or {@code null} if no type arguments
+ * were declared.
*
* @return the type argument associated with this literal
*/

Powered by Google App Engine
This is Rietveld 408576698