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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/MethodInvocation.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/MethodInvocation.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/MethodInvocation.java (revision 9355)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/MethodInvocation.java (working copy)
@@ -16,11 +16,11 @@
import com.google.dart.engine.scanner.Token;
/**
- * Instances of the class <code>MethodInvocation</code> represent the invocation of either a
- * function or a method. Invocations of functions resulting from evaluating an expression are
- * represented by {@link FunctionExpressionInvocation function expression invocation} nodes.
- * Invocations of getters and setters are represented by either {@link PrefixedIdentifier prefixed
- * identifier} or {@link PropertyAccess property access} nodes.
+ * Instances of the class {@code MethodInvocation} represent the invocation of either a function or
+ * a method. Invocations of functions resulting from evaluating an expression are represented by
+ * {@link FunctionExpressionInvocation function expression invocation} nodes. Invocations of getters
+ * and setters are represented by either {@link PrefixedIdentifier prefixed identifier} or
+ * {@link PropertyAccess property access} nodes.
*
* <pre>
* methodInvoction ::=
@@ -29,13 +29,13 @@
*/
public class MethodInvocation extends Expression {
/**
- * The expression producing the object on which the method is defined, or <code>null</code> if
- * there is no target (that is, the target is implicitly <code>this</code>).
+ * The expression producing the object on which the method is defined, or {@code null} if there is
+ * no target (that is, the target is implicitly {@code this}).
*/
private Expression target;
/**
- * The period that separates the target from the method name, or <code>null</code> if there is no
+ * The period that separates the target from the method name, or {@code null} if there is no
* target.
*/
private Token period;
@@ -109,8 +109,8 @@
}
/**
- * Return the period that separates the target from the method name, or <code>null</code> if there
- * is no target.
+ * Return the period that separates the target from the method name, or {@code null} if there is
+ * no target.
*
* @return the period that separates the target from the method name
*/
@@ -119,8 +119,8 @@
}
/**
- * Return the expression producing the object on which the method is defined, or <code>null</code>
- * if there is no target (that is, the target is implicitly <code>this</code>).
+ * Return the expression producing the object on which the method is defined, or {@code null} if
+ * there is no target (that is, the target is implicitly {@code this}).
*
* @return the expression producing the object on which the method is defined
*/

Powered by Google App Engine
This is Rietveld 408576698