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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/IsExpression.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/IsExpression.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/IsExpression.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/IsExpression.java (working copy)
@@ -16,7 +16,7 @@
import com.google.dart.engine.scanner.Token;
/**
- * Instances of the class <code>IsExpression</code> represent an is expression.
+ * Instances of the class {@code IsExpression} represent an is expression.
*
* <pre>
* isExpression ::=
@@ -35,7 +35,7 @@
private Token isOperator;
/**
- * The not operator, or <code>null</code> if the sense of the test is not negated.
+ * The not operator, or {@code null} if the sense of the test is not negated.
*/
private Token notOperator;
@@ -55,8 +55,7 @@
*
* @param expression the expression used to compute the value whose type is being tested
* @param isOperator the is operator
- * @param notOperator the not operator, or <code>null</code> if the sense of the test is not
- * negated
+ * @param notOperator the not operator, or {@code null} if the sense of the test is not negated
* @param type the name of the type being tested for
*/
public IsExpression(Expression expression, Token isOperator, Token notOperator, TypeName type) {

Powered by Google App Engine
This is Rietveld 408576698