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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/InstanceCreationExpression.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/InstanceCreationExpression.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/InstanceCreationExpression.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/InstanceCreationExpression.java (working copy)
@@ -16,7 +16,7 @@
import com.google.dart.engine.scanner.Token;
/**
- * Instances of the class <code>InstanceCreationExpression</code> represent an instance creation
+ * Instances of the class {@code InstanceCreationExpression} represent an instance creation
* expression.
*
* <pre>
@@ -36,14 +36,14 @@
private TypeName type;
/**
- * The period that separates the type from the constructor name, or <code>null</code> if the
- * unnamed constructor is to be invoked.
+ * The period that separates the type from the constructor name, or {@code null} if the unnamed
+ * constructor is to be invoked.
*/
private Token period;
/**
- * The name of the constructor to be invoked, or <code>null</code> if the unnamed constructor is
- * to be invoked.
+ * The name of the constructor to be invoked, or {@code null} if the unnamed constructor is to be
+ * invoked.
*/
private SimpleIdentifier identifier;
@@ -101,8 +101,8 @@
}
/**
- * Return the name of the constructor to be invoked, or <code>null</code> if the unnamed
- * constructor is to be invoked.
+ * Return the name of the constructor to be invoked, or {@code null} if the unnamed constructor is
+ * to be invoked.
*
* @return the name of the constructor to be invoked
*/
@@ -120,8 +120,8 @@
}
/**
- * Return the period that separates the type from the constructor name, or <code>null</code> if
- * the unnamed constructor is to be invoked.
+ * Return the period that separates the type from the constructor name, or {@code null} if the
+ * unnamed constructor is to be invoked.
*
* @return the period that separates the type from the constructor name
*/

Powered by Google App Engine
This is Rietveld 408576698