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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/SuperConstructorInvocation.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/SuperConstructorInvocation.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/SuperConstructorInvocation.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/SuperConstructorInvocation.java (working copy)
@@ -16,7 +16,7 @@
import com.google.dart.engine.scanner.Token;
/**
- * Instances of the class <code>SuperConstructorInvocation</code> represent the invocation of a
+ * Instances of the class {@code SuperConstructorInvocation} represent the invocation of a
* superclass' constructor from within a constructor's initialization list.
*
* <pre>
@@ -32,13 +32,13 @@
/**
* The token for the period before the name of the constructor that is being invoked, or
- * <code>null</code> if the unnamed constructor is being invoked.
+ * {@code null} if the unnamed constructor is being invoked.
*/
private Token period;
/**
- * The name of the constructor that is being invoked, or <code>null</code> if the unnamed
- * constructor is being invoked.
+ * The name of the constructor that is being invoked, or {@code null} if the unnamed constructor
+ * is being invoked.
*/
private SimpleIdentifier constructorName;
@@ -91,7 +91,7 @@
}
/**
- * Return the name of the constructor that is being invoked, or <code>null</code> if the unnamed
+ * Return the name of the constructor that is being invoked, or {@code null} if the unnamed
* constructor is being invoked.
*
* @return the name of the constructor that is being invoked
@@ -116,7 +116,7 @@
/**
* Return the token for the period before the name of the constructor that is being invoked, or
- * <code>null</code> if the unnamed constructor is being invoked.
+ * {@code null} if the unnamed constructor is being invoked.
*
* @return the token for the period before the name of the constructor that is being invoked
*/

Powered by Google App Engine
This is Rietveld 408576698