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

Unified Diff: pkg/analyzer/lib/src/generated/ast.dart

Issue 708263002: Clean up references in comments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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: pkg/analyzer/lib/src/generated/ast.dart
diff --git a/pkg/analyzer/lib/src/generated/ast.dart b/pkg/analyzer/lib/src/generated/ast.dart
index 232674e9ee8b12808fe5243e285d28daf66dc2ca..5cc32198775cdf39b930c43d09da39eb68b7c753 100644
--- a/pkg/analyzer/lib/src/generated/ast.dart
+++ b/pkg/analyzer/lib/src/generated/ast.dart
@@ -530,7 +530,7 @@ class ArgumentList extends AstNode {
* element representing the parameter to which the value of the given expression will be bound.
* Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getPropagatedParameterElement].
+ * This method is only intended to be used by [Expression.propagatedParameterElement].
*
* @param expression the expression corresponding to the parameter to be returned
* @return the parameter element representing the parameter to which the value of the expression
@@ -557,7 +557,7 @@ class ArgumentList extends AstNode {
* element representing the parameter to which the value of the given expression will be bound.
* Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getStaticParameterElement].
+ * This method is only intended to be used by [Expression.staticParameterElement].
*
* @param expression the expression corresponding to the parameter to be returned
* @return the parameter element representing the parameter to which the value of the expression
@@ -920,7 +920,7 @@ class AssignmentExpression extends Expression {
* propagated type information, then return the parameter element representing the parameter to
* which the value of the right operand will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getPropagatedParameterElement].
+ * This method is only intended to be used by [Expression.propagatedParameterElement].
*
* @return the parameter element representing the parameter to which the value of the right
* operand will be bound
@@ -960,7 +960,7 @@ class AssignmentExpression extends Expression {
* type information, then return the parameter element representing the parameter to which the
* value of the right operand will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getStaticParameterElement].
+ * This method is only intended to be used by [Expression.staticParameterElement].
*
* @return the parameter element representing the parameter to which the value of the right
* operand will be bound
@@ -3330,7 +3330,7 @@ class BinaryExpression extends Expression {
* propagated type information, then return the parameter element representing the parameter to
* which the value of the right operand will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getPropagatedParameterElement].
+ * This method is only intended to be used by [Expression.propagatedParameterElement].
*
* @return the parameter element representing the parameter to which the value of the right
* operand will be bound
@@ -3351,7 +3351,7 @@ class BinaryExpression extends Expression {
* type information, then return the parameter element representing the parameter to which the
* value of the right operand will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getStaticParameterElement].
+ * This method is only intended to be used by [Expression.staticParameterElement].
*
* @return the parameter element representing the parameter to which the value of the right
* operand will be bound
@@ -6198,17 +6198,14 @@ class DefaultFormalParameter extends FormalParameter {
* This recursive Ast visitor is used to run over [Expression]s to determine if the expression
* is composed by at least one deferred [PrefixedIdentifier].
*
- * @see PrefixedIdentifier#isDeferred()
+ * See [PrefixedIdentifier.isDeferred].
*/
class DeferredLibraryReferenceDetector extends RecursiveAstVisitor<Object> {
bool _result = false;
/**
- * Return the result, `true` if the visitor found a [PrefixedIdentifier] that returned
- * `true` to the [PrefixedIdentifier#isDeferred] query.
- *
- * @return `true` if the visitor found a [PrefixedIdentifier] that returned
- * `true` to the [PrefixedIdentifier#isDeferred] query
+ * Return `true` if the visitor found a [PrefixedIdentifier] that returned
+ * `true` to the [PrefixedIdentifier.isDeferred] query.
*/
bool get result => _result;
@@ -10443,7 +10440,7 @@ class IndexExpression extends Expression {
* expression is returned.
*
* @return the expression used to compute the object being indexed
- * @see #getTarget()
+ * See [target].
*/
Expression get realTarget {
if (isCascaded) {
@@ -10481,7 +10478,7 @@ class IndexExpression extends Expression {
* expression is part of a cascade expression.
*
* @return the expression used to compute the object being indexed
- * @see #getRealTarget()
+ * See [realTarget].
*/
Expression get target => _target;
@@ -10606,7 +10603,7 @@ class IndexExpression extends Expression {
* propagated type information, then return the parameter element representing the parameter to
* which the value of the index expression will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getPropagatedParameterElement].
+ * This method is only intended to be used by [Expression.propagatedParameterElement].
*
* @return the parameter element representing the parameter to which the value of the index
* expression will be bound
@@ -10627,7 +10624,7 @@ class IndexExpression extends Expression {
* type information, then return the parameter element representing the parameter to which the
* value of the index expression will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getStaticParameterElement].
+ * This method is only intended to be used by [Expression.staticParameterElement].
*
* @return the parameter element representing the parameter to which the value of the index
* expression will be bound
@@ -12023,7 +12020,7 @@ class MethodInvocation extends Expression {
* returned.
*
* @return the expression used to compute the receiver of the invocation
- * @see #getTarget()
+ * See [target].
*/
Expression get realTarget {
if (isCascaded) {
@@ -12045,7 +12042,7 @@ class MethodInvocation extends Expression {
* invocation is part of a cascade expression.
*
* @return the expression producing the object on which the method is defined
- * @see #getRealTarget()
+ * See [realTarget].
*/
Expression get target => _target;
@@ -14183,7 +14180,7 @@ class PostfixExpression extends Expression {
* propagated type information, then return the parameter element representing the parameter to
* which the value of the operand will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getPropagatedParameterElement].
+ * This method is only intended to be used by [Expression.propagatedParameterElement].
*
* @return the parameter element representing the parameter to which the value of the right
* operand will be bound
@@ -14204,7 +14201,7 @@ class PostfixExpression extends Expression {
* type information, then return the parameter element representing the parameter to which the
* value of the operand will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getStaticParameterElement].
+ * This method is only intended to be used by [Expression.staticParameterElement].
*
* @return the parameter element representing the parameter to which the value of the right
* operand will be bound
@@ -14358,7 +14355,7 @@ class PrefixExpression extends Expression {
* propagated type information, then return the parameter element representing the parameter to
* which the value of the operand will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getPropagatedParameterElement].
+ * This method is only intended to be used by [Expression.propagatedParameterElement].
*
* @return the parameter element representing the parameter to which the value of the right
* operand will be bound
@@ -14379,7 +14376,7 @@ class PrefixExpression extends Expression {
* type information, then return the parameter element representing the parameter to which the
* value of the operand will be bound. Otherwise, return `null`.
*
- * This method is only intended to be used by [Expression#getStaticParameterElement].
+ * This method is only intended to be used by [Expression.staticParameterElement].
*
* @return the parameter element representing the parameter to which the value of the right
* operand will be bound
@@ -14605,7 +14602,7 @@ class PropertyAccess extends Expression {
* returned.
*
* @return the expression used to compute the receiver of the invocation
- * @see #getTarget()
+ * See [target].
*/
Expression get realTarget {
if (isCascaded) {
@@ -14626,7 +14623,7 @@ class PropertyAccess extends Expression {
* `null` if this property access is part of a cascade expression.
*
* @return the expression computing the object defining the property being accessed
- * @see #getRealTarget()
+ * See [realTarget].
*/
Expression get target => _target;
@@ -19572,7 +19569,7 @@ abstract class UriBasedDirective extends Directive {
}
/**
- * Validation codes returned by [UriBasedDirective#validate].
+ * Validation codes returned by [UriBasedDirective.validate].
*/
class UriValidationCode extends Enum<UriValidationCode> {
static const UriValidationCode INVALID_URI = const UriValidationCode('INVALID_URI', 0);
« no previous file with comments | « pkg/analysis_server/lib/src/services/generated/util.dart ('k') | pkg/analyzer/lib/src/generated/element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698