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

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

Issue 14161021: Generate unique names less aggressively. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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: pkg/analyzer_experimental/lib/src/generated/ast.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/ast.dart b/pkg/analyzer_experimental/lib/src/generated/ast.dart
index cd99c9e2c22bfd9a5b878c5dfd0996a138ccac03..4f1ece34ac8b3e5143a2a0931b958a02e74d50ab 100644
--- a/pkg/analyzer_experimental/lib/src/generated/ast.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/ast.dart
@@ -89,8 +89,8 @@ abstract class ASTNode {
* range
*/
int get offset {
- Token beginToken3 = beginToken;
- if (beginToken3 == null) {
+ Token beginToken2 = beginToken;
+ if (beginToken2 == null) {
return -1;
}
return beginToken.offset;
@@ -601,8 +601,8 @@ class Annotation extends ASTNode {
* field that is being referenced to the given name.
* @param name the name of the constructor being invoked or the name of the field being referenced
*/
- void set name(Identifier name3) {
- this._name = becomeParentOf(name3);
+ void set name(Identifier name2) {
+ this._name = becomeParentOf(name2);
}
/**
* Set the period before the constructor name to the given token.
@@ -665,8 +665,8 @@ class ArgumentDefinitionTest extends Expression {
* Set the identifier representing the argument being tested to the given identifier.
* @param identifier the identifier representing the argument being tested
*/
- void set identifier(SimpleIdentifier identifier8) {
- this._identifier = becomeParentOf(identifier8);
+ void set identifier(SimpleIdentifier identifier2) {
+ this._identifier = becomeParentOf(identifier2);
}
/**
* Set the token representing the question mark to the given token.
@@ -975,8 +975,8 @@ class AssertStatement extends Statement {
* Set the token representing the 'assert' keyword to the given token.
* @param keyword the token representing the 'assert' keyword
*/
- void set keyword(Token keyword3) {
- this._keyword = keyword3;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the left parenthesis to the given token.
@@ -1075,8 +1075,8 @@ class AssignmentExpression extends Expression {
* Set the element associated with the operator to the given element.
* @param element the element associated with the operator
*/
- void set element(MethodElement element3) {
- this._element = element3;
+ void set element(MethodElement element2) {
+ this._element = element2;
}
/**
* Return the expression used to compute the left hand side.
@@ -1176,8 +1176,8 @@ class BinaryExpression extends Expression {
* Set the element associated with the operator to the given element.
* @param element the element associated with the operator
*/
- void set element(MethodElement element4) {
- this._element = element4;
+ void set element(MethodElement element2) {
+ this._element = element2;
}
/**
* Set the expression used to compute the left operand to the given expression.
@@ -1190,8 +1190,8 @@ class BinaryExpression extends Expression {
* Set the binary operator being applied to the given operator.
* @return the binary operator being applied
*/
- void set operator(Token operator3) {
- this._operator = operator3;
+ void set operator(Token operator2) {
+ this._operator = operator2;
}
/**
* Set the expression used to compute the right operand to the given expression.
@@ -1381,8 +1381,8 @@ class BooleanLiteral extends Literal {
* Set the value of the literal to the given value.
* @param value the value of the literal
*/
- void set value(bool value4) {
- this._value = value4;
+ void set value(bool value2) {
+ this._value = value2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -1448,8 +1448,8 @@ class BreakStatement extends Statement {
* Set the token representing the 'break' keyword to the given token.
* @param keyword the token representing the 'break' keyword
*/
- void set keyword(Token keyword4) {
- this._keyword = keyword4;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the label associated with the statement to the given identifier.
@@ -1462,8 +1462,8 @@ class BreakStatement extends Statement {
* Set the semicolon terminating the statement to the given token.
* @param semicolon the semicolon terminating the statement
*/
- void set semicolon(Token semicolon3) {
- this._semicolon = semicolon3;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_label, visitor);
@@ -1914,22 +1914,22 @@ class ClassDeclaration extends CompilationUnitMember {
* Set the extends clause for this class to the given clause.
* @param extendsClause the extends clause for this class
*/
- void set extendsClause(ExtendsClause extendsClause3) {
- this._extendsClause = becomeParentOf(extendsClause3);
+ void set extendsClause(ExtendsClause extendsClause2) {
+ this._extendsClause = becomeParentOf(extendsClause2);
}
/**
* Set the implements clause for the class to the given clause.
* @param implementsClause the implements clause for the class
*/
- void set implementsClause(ImplementsClause implementsClause4) {
- this._implementsClause = becomeParentOf(implementsClause4);
+ void set implementsClause(ImplementsClause implementsClause2) {
+ this._implementsClause = becomeParentOf(implementsClause2);
}
/**
* Set the left curly bracket to the given token.
* @param leftBracket the left curly bracket
*/
- void set leftBracket(Token leftBracket3) {
- this._leftBracket = leftBracket3;
+ void set leftBracket(Token leftBracket2) {
+ this._leftBracket = leftBracket2;
}
/**
* Set the name of the class being declared to the given identifier.
@@ -1942,8 +1942,8 @@ class ClassDeclaration extends CompilationUnitMember {
* Set the right curly bracket to the given token.
* @param rightBracket the right curly bracket
*/
- void set rightBracket(Token rightBracket3) {
- this._rightBracket = rightBracket3;
+ void set rightBracket(Token rightBracket2) {
+ this._rightBracket = rightBracket2;
}
/**
* Set the type parameters for the class to the given list of type parameters.
@@ -1956,8 +1956,8 @@ class ClassDeclaration extends CompilationUnitMember {
* Set the with clause for the class to the given clause.
* @param withClause the with clause for the class
*/
- void set withClause(WithClause withClause4) {
- this._withClause = becomeParentOf(withClause4);
+ void set withClause(WithClause withClause2) {
+ this._withClause = becomeParentOf(withClause2);
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(documentationComment, visitor);
@@ -2115,29 +2115,29 @@ class ClassTypeAlias extends TypeAlias {
* Set the token for the 'abstract' keyword to the given token.
* @param abstractKeyword the token for the 'abstract' keyword
*/
- void set abstractKeyword(Token abstractKeyword3) {
- this._abstractKeyword = abstractKeyword3;
+ void set abstractKeyword(Token abstractKeyword2) {
+ this._abstractKeyword = abstractKeyword2;
}
/**
* Set the token for the '=' separating the name from the definition to the given token.
* @param equals the token for the '=' separating the name from the definition
*/
- void set equals(Token equals4) {
- this._equals = equals4;
+ void set equals(Token equals2) {
+ this._equals = equals2;
}
/**
* Set the implements clause for this class to the given implements clause.
* @param implementsClause the implements clause for this class
*/
- void set implementsClause(ImplementsClause implementsClause5) {
- this._implementsClause = becomeParentOf(implementsClause5);
+ void set implementsClause(ImplementsClause implementsClause2) {
+ this._implementsClause = becomeParentOf(implementsClause2);
}
/**
* Set the name of the class being declared to the given identifier.
* @param name the name of the class being declared
*/
- void set name(SimpleIdentifier name4) {
- this._name = becomeParentOf(name4);
+ void set name(SimpleIdentifier name2) {
+ this._name = becomeParentOf(name2);
}
/**
* Set the name of the superclass of the class being declared to the given name.
@@ -2150,15 +2150,15 @@ class ClassTypeAlias extends TypeAlias {
* Set the type parameters for the class to the given list of parameters.
* @param typeParameters the type parameters for the class
*/
- void set typeParameters(TypeParameterList typeParameters3) {
- this._typeParameters = becomeParentOf(typeParameters3);
+ void set typeParameters(TypeParameterList typeParameters2) {
+ this._typeParameters = becomeParentOf(typeParameters2);
}
/**
* Set the with clause for this class to the given with clause.
* @param withClause the with clause for this class
*/
- void set withClause(WithClause withClause5) {
- this._withClause = becomeParentOf(withClause5);
+ void set withClause(WithClause withClause2) {
+ this._withClause = becomeParentOf(withClause2);
}
void visitChildren(ASTVisitor<Object> visitor) {
super.visitChildren(visitor);
@@ -2207,8 +2207,8 @@ abstract class Combinator extends ASTNode {
* @param keyword the keyword specifying what kind of processing is to be done on the imported
* names
*/
- void set keyword(Token keyword5) {
- this._keyword = keyword5;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
}
/**
@@ -2394,8 +2394,8 @@ class CommentReference extends ASTNode {
* Set the identifier being referenced to the given identifier.
* @param identifier the identifier being referenced
*/
- void set identifier(Identifier identifier26) {
- identifier26 = becomeParentOf(identifier26);
+ void set identifier(Identifier identifier2) {
+ identifier2 = becomeParentOf(identifier2);
}
/**
* Set the token representing the 'new' keyword to the given token.
@@ -2527,11 +2527,11 @@ class CompilationUnit extends ASTNode {
}
}
int get length {
- Token endToken3 = endToken;
- if (endToken3 == null) {
+ Token endToken2 = endToken;
+ if (endToken2 == null) {
return 0;
}
- return endToken3.offset + endToken3.length;
+ return endToken2.offset + endToken2.length;
}
/**
* Get the {@link LineInfo} object for this compilation unit.
@@ -2561,8 +2561,8 @@ class CompilationUnit extends ASTNode {
* Set the element associated with this compilation unit to the given element.
* @param element the element associated with this compilation unit
*/
- void set element(CompilationUnitElement element5) {
- this._element = element5;
+ void set element(CompilationUnitElement element2) {
+ this._element = element2;
}
/**
* Set the {@link LineInfo} object for this compilation unit.
@@ -2760,8 +2760,8 @@ class ConditionalExpression extends Expression {
* Set the token used to separate the condition from the then expression to the given token.
* @param question the token used to separate the condition from the then expression
*/
- void set question(Token question3) {
- this._question = question3;
+ void set question(Token question2) {
+ this._question = question2;
}
/**
* Set the expression that is executed if the condition evaluates to {@code true} to the given
@@ -2987,8 +2987,8 @@ class ConstructorDeclaration extends ClassMember {
* Set the element associated with this constructor to the given element.
* @param element the element associated with this constructor
*/
- void set element(ConstructorElement element6) {
- this._element = element6;
+ void set element(ConstructorElement element2) {
+ this._element = element2;
}
/**
* Set the token for the 'external' keyword to the given token.
@@ -3022,8 +3022,8 @@ class ConstructorDeclaration extends ClassMember {
* Set the token for the period before the constructor name to the given token.
* @param period the token for the period before the constructor name
*/
- void set period(Token period3) {
- this._period = period3;
+ void set period(Token period2) {
+ this._period = period2;
}
/**
* Set the name of the constructor to which this constructor will be redirected to the given
@@ -3175,16 +3175,16 @@ class ConstructorFieldInitializer extends ConstructorInitializer {
* Set the token for the equal sign between the field name and the expression to the given token.
* @param equals the token for the equal sign between the field name and the expression
*/
- void set equals(Token equals5) {
- this._equals = equals5;
+ void set equals(Token equals2) {
+ this._equals = equals2;
}
/**
* Set the expression computing the value to which the field will be initialized to the given
* expression.
* @param expression the expression computing the value to which the field will be initialized
*/
- void set expression(Expression expression3) {
- this._expression = becomeParentOf(expression3);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the name of the field being initialized to the given identifier.
@@ -3197,15 +3197,15 @@ class ConstructorFieldInitializer extends ConstructorInitializer {
* Set the token for the 'this' keyword to the given token.
* @param keyword the token for the 'this' keyword
*/
- void set keyword(Token keyword6) {
- this._keyword = keyword6;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the token for the period after the 'this' keyword to the given token.
* @param period the token for the period after the 'this' keyword
*/
- void set period(Token period4) {
- this._period = period4;
+ void set period(Token period2) {
+ this._period = period2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_fieldName, visitor);
@@ -3302,22 +3302,22 @@ class ConstructorName extends ASTNode {
* Set the element associated with this constructor name to the given element.
* @param element the element associated with this constructor name
*/
- void set element(ConstructorElement element7) {
- this._element = element7;
+ void set element(ConstructorElement element2) {
+ this._element = element2;
}
/**
* Set the name of the constructor to the given name.
* @param name the name of the constructor
*/
- void set name(SimpleIdentifier name5) {
- this._name = becomeParentOf(name5);
+ void set name(SimpleIdentifier name2) {
+ this._name = becomeParentOf(name2);
}
/**
* Return the token for the period before the constructor name to the given token.
* @param period the token for the period before the constructor name
*/
- void set period(Token period5) {
- this._period = period5;
+ void set period(Token period2) {
+ this._period = period2;
}
/**
* Set the name of the type defining the constructor to the given type name.
@@ -3392,8 +3392,8 @@ class ContinueStatement extends Statement {
* Set the token representing the 'continue' keyword to the given token.
* @param keyword the token representing the 'continue' keyword
*/
- void set keyword(Token keyword7) {
- this._keyword = keyword7;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the label associated with the statement to the given label.
@@ -3406,8 +3406,8 @@ class ContinueStatement extends Statement {
* Set the semicolon terminating the statement to the given token.
* @param semicolon the semicolon terminating the statement
*/
- void set semicolon(Token semicolon4) {
- this._semicolon = semicolon4;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_label, visitor);
@@ -3486,11 +3486,11 @@ class DeclaredIdentifier extends Declaration {
DeclaredIdentifier({Comment comment, List<Annotation> metadata, Token keyword, TypeName type, SimpleIdentifier identifier}) : this.full(comment, metadata, keyword, type, identifier);
accept(ASTVisitor visitor) => visitor.visitDeclaredIdentifier(this);
LocalVariableElement get element {
- SimpleIdentifier identifier12 = identifier;
- if (identifier12 == null) {
+ SimpleIdentifier identifier2 = identifier;
+ if (identifier2 == null) {
return null;
}
- return identifier12.element as LocalVariableElement;
+ return identifier2.element as LocalVariableElement;
}
Token get endToken => _identifier.endToken;
/**
@@ -3525,8 +3525,8 @@ class DeclaredIdentifier extends Declaration {
* Set the token representing either the 'final', 'const' or 'var' keyword to the given token.
* @param keyword the token representing either the 'final', 'const' or 'var' keyword
*/
- void set keyword(Token keyword8) {
- this._keyword = keyword8;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the name of the declared type of the parameter to the given type name.
@@ -3663,8 +3663,8 @@ class DefaultFormalParameter extends FormalParameter {
* Set the token separating the parameter from the default value to the given token.
* @param separator the token separating the parameter from the default value
*/
- void set separator(Token separator3) {
- this._separator = separator3;
+ void set separator(Token separator2) {
+ this._separator = separator2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_parameter, visitor);
@@ -3714,8 +3714,8 @@ abstract class Directive extends AnnotatedNode {
* Set the element associated with this directive to the given element.
* @param element the element associated with this directive
*/
- void set element(Element element8) {
- this._element = element8;
+ void set element(Element element2) {
+ this._element = element2;
}
}
/**
@@ -3862,8 +3862,8 @@ class DoStatement extends Statement {
* Set the semicolon terminating the statement to the given token.
* @param semicolon the semicolon terminating the statement
*/
- void set semicolon(Token semicolon5) {
- this._semicolon = semicolon5;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
/**
* Set the token representing the 'while' keyword to the given token.
@@ -3929,15 +3929,15 @@ class DoubleLiteral extends Literal {
* Set the token representing the literal to the given token.
* @param literal the token representing the literal
*/
- void set literal(Token literal3) {
- this._literal = literal3;
+ void set literal(Token literal2) {
+ this._literal = literal2;
}
/**
* Set the value of the literal to the given value.
* @param value the value of the literal
*/
- void set value(double value5) {
- this._value = value5;
+ void set value(double value2) {
+ this._value = value2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -3981,8 +3981,8 @@ class EmptyFunctionBody extends FunctionBody {
* token.
* @param semicolon the token representing the semicolon that marks the end of the function body
*/
- void set semicolon(Token semicolon6) {
- this._semicolon = semicolon6;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -4024,8 +4024,8 @@ class EmptyStatement extends Statement {
* Set the semicolon terminating the statement to the given token.
* @param semicolon the semicolon terminating the statement
*/
- void set semicolon(Token semicolon7) {
- this._semicolon = semicolon7;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -4102,9 +4102,9 @@ abstract class Expression extends ASTNode {
* will be bound
*/
ParameterElement get parameterElement {
- ASTNode parent3 = parent;
- if (parent3 is ArgumentList) {
- return ((parent3 as ArgumentList)).getParameterElementFor(this);
+ ASTNode parent2 = parent;
+ if (parent2 is ArgumentList) {
+ return ((parent2 as ArgumentList)).getParameterElementFor(this);
}
return null;
}
@@ -4209,8 +4209,8 @@ class ExpressionFunctionBody extends FunctionBody {
* Set the expression representing the body of the function to the given expression.
* @param expression the expression representing the body of the function
*/
- void set expression(Expression expression4) {
- this._expression = becomeParentOf(expression4);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the token introducing the expression that represents the body of the function to the given
@@ -4224,8 +4224,8 @@ class ExpressionFunctionBody extends FunctionBody {
* Set the semicolon terminating the statement to the given token.
* @param semicolon the semicolon terminating the statement
*/
- void set semicolon(Token semicolon8) {
- this._semicolon = semicolon8;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_expression, visitor);
@@ -4286,15 +4286,15 @@ class ExpressionStatement extends Statement {
* Set the expression that comprises the statement to the given expression.
* @param expression the expression that comprises the statement
*/
- void set expression(Expression expression5) {
- this._expression = becomeParentOf(expression5);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the semicolon terminating the statement to the given token.
* @param semicolon the semicolon terminating the statement
*/
- void set semicolon(Token semicolon9) {
- this._semicolon = semicolon9;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_expression, visitor);
@@ -4349,8 +4349,8 @@ class ExtendsClause extends ASTNode {
* Set the token representing the 'extends' keyword to the given token.
* @param keyword the token representing the 'extends' keyword
*/
- void set keyword(Token keyword9) {
- this._keyword = keyword9;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the name of the class that is being extended to the given name.
@@ -4437,15 +4437,15 @@ class FieldDeclaration extends ClassMember {
* Set the token representing the 'static' keyword to the given token.
* @param keyword the token representing the 'static' keyword
*/
- void set keyword(Token keyword10) {
- this._keyword = keyword10;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the semicolon terminating the declaration to the given token.
* @param semicolon the semicolon terminating the declaration
*/
- void set semicolon(Token semicolon10) {
- this._semicolon = semicolon10;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
super.visitChildren(visitor);
@@ -4548,15 +4548,15 @@ class FieldFormalParameter extends NormalFormalParameter {
* Set the token representing either the 'final', 'const' or 'var' keyword to the given token.
* @param keyword the token representing either the 'final', 'const' or 'var' keyword
*/
- void set keyword(Token keyword11) {
- this._keyword = keyword11;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the token representing the period to the given token.
* @param period the token representing the period
*/
- void set period(Token period6) {
- this._period = period6;
+ void set period(Token period2) {
+ this._period = period2;
}
/**
* Set the token representing the 'this' keyword to the given token.
@@ -4712,8 +4712,8 @@ class ForEachStatement extends Statement {
* Set the left parenthesis to the given token.
* @param leftParenthesis the left parenthesis
*/
- void set leftParenthesis(Token leftParenthesis3) {
- this._leftParenthesis = leftParenthesis3;
+ void set leftParenthesis(Token leftParenthesis2) {
+ this._leftParenthesis = leftParenthesis2;
}
/**
* Set the declaration of the loop variable to the given variable.
@@ -4726,8 +4726,8 @@ class ForEachStatement extends Statement {
* Set the right parenthesis to the given token.
* @param rightParenthesis the right parenthesis
*/
- void set rightParenthesis(Token rightParenthesis3) {
- this._rightParenthesis = rightParenthesis3;
+ void set rightParenthesis(Token rightParenthesis2) {
+ this._rightParenthesis = rightParenthesis2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_loopVariable, visitor);
@@ -4887,8 +4887,8 @@ class ForStatement extends Statement {
* Set the body of the loop to the given statement.
* @param body the body of the loop
*/
- void set body(Statement body3) {
- this._body = becomeParentOf(body3);
+ void set body(Statement body2) {
+ this._body = becomeParentOf(body2);
}
/**
* Set the condition used to determine when to terminate the loop to the given expression.
@@ -4901,8 +4901,8 @@ class ForStatement extends Statement {
* Set the token representing the 'for' keyword to the given token.
* @param forKeyword the token representing the 'for' keyword
*/
- void set forKeyword(Token forKeyword3) {
- this._forKeyword = forKeyword3;
+ void set forKeyword(Token forKeyword2) {
+ this._forKeyword = forKeyword2;
}
/**
* Set the initialization expression to the given expression.
@@ -4915,8 +4915,8 @@ class ForStatement extends Statement {
* Set the left parenthesis to the given token.
* @param leftParenthesis the left parenthesis
*/
- void set leftParenthesis(Token leftParenthesis4) {
- this._leftParenthesis = leftParenthesis4;
+ void set leftParenthesis(Token leftParenthesis2) {
+ this._leftParenthesis = leftParenthesis2;
}
/**
* Set the semicolon separating the initializer and the condition to the given token.
@@ -4929,8 +4929,8 @@ class ForStatement extends Statement {
* Set the right parenthesis to the given token.
* @param rightParenthesis the right parenthesis
*/
- void set rightParenthesis(Token rightParenthesis4) {
- this._rightParenthesis = rightParenthesis4;
+ void set rightParenthesis(Token rightParenthesis2) {
+ this._rightParenthesis = rightParenthesis2;
}
/**
* Set the semicolon separating the condition and the updater to the given token.
@@ -4968,11 +4968,11 @@ abstract class FormalParameter extends ASTNode {
* @return the element representing this parameter
*/
ParameterElement get element {
- SimpleIdentifier identifier13 = identifier;
- if (identifier13 == null) {
+ SimpleIdentifier identifier2 = identifier;
+ if (identifier2 == null) {
return null;
}
- return identifier13.element as ParameterElement;
+ return identifier2.element as ParameterElement;
}
/**
* Return the name of the parameter being declared.
@@ -5237,15 +5237,15 @@ class FunctionDeclaration extends CompilationUnitMember {
* Set the token representing the 'external' keyword to the given token.
* @param externalKeyword the token representing the 'external' keyword
*/
- void set externalKeyword(Token externalKeyword3) {
- this._externalKeyword = externalKeyword3;
+ void set externalKeyword(Token externalKeyword2) {
+ this._externalKeyword = externalKeyword2;
}
/**
* Set the function expression being wrapped to the given function expression.
* @param functionExpression the function expression being wrapped
*/
- void set functionExpression(FunctionExpression functionExpression3) {
- functionExpression3 = becomeParentOf(functionExpression3);
+ void set functionExpression(FunctionExpression functionExpression2) {
+ functionExpression2 = becomeParentOf(functionExpression2);
}
/**
* Set the name of the function to the given identifier.
@@ -5407,15 +5407,15 @@ class FunctionExpression extends Expression {
* Set the element associated with this function to the given element.
* @param element the element associated with this function
*/
- void set element(ExecutableElement element9) {
- this._element = element9;
+ void set element(ExecutableElement element2) {
+ this._element = element2;
}
/**
* Set the parameters associated with the function to the given list of parameters.
* @param parameters the parameters associated with the function
*/
- void set parameters(FormalParameterList parameters3) {
- this._parameters = becomeParentOf(parameters3);
+ void set parameters(FormalParameterList parameters2) {
+ this._parameters = becomeParentOf(parameters2);
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_parameters, visitor);
@@ -5484,15 +5484,15 @@ class FunctionExpressionInvocation extends Expression {
* Set the list of arguments to the method to the given list.
* @param argumentList the list of arguments to the method
*/
- void set argumentList(ArgumentList argumentList5) {
- this._argumentList = becomeParentOf(argumentList5);
+ void set argumentList(ArgumentList argumentList2) {
+ this._argumentList = becomeParentOf(argumentList2);
}
/**
* Set the element associated with the function being invoked to the given element.
* @param element the element associated with the function being invoked
*/
- void set element(ExecutableElement element10) {
- this._element = element10;
+ void set element(ExecutableElement element2) {
+ this._element = element2;
}
/**
* Set the expression producing the function being invoked to the given expression.
@@ -5590,15 +5590,15 @@ class FunctionTypeAlias extends TypeAlias {
* Set the name of the function type being declared to the given identifier.
* @param name the name of the function type being declared
*/
- void set name(SimpleIdentifier name6) {
- this._name = becomeParentOf(name6);
+ void set name(SimpleIdentifier name2) {
+ this._name = becomeParentOf(name2);
}
/**
* Set the parameters associated with the function type to the given list of parameters.
* @param parameters the parameters associated with the function type
*/
- void set parameters(FormalParameterList parameters4) {
- this._parameters = becomeParentOf(parameters4);
+ void set parameters(FormalParameterList parameters2) {
+ this._parameters = becomeParentOf(parameters2);
}
/**
* Set the name of the return type of the function type being defined to the given type name.
@@ -5611,8 +5611,8 @@ class FunctionTypeAlias extends TypeAlias {
* Set the type parameters for the function type to the given list of parameters.
* @param typeParameters the type parameters for the function type
*/
- void set typeParameters(TypeParameterList typeParameters4) {
- this._typeParameters = becomeParentOf(typeParameters4);
+ void set typeParameters(TypeParameterList typeParameters2) {
+ this._typeParameters = becomeParentOf(typeParameters2);
}
void visitChildren(ASTVisitor<Object> visitor) {
super.visitChildren(visitor);
@@ -5686,8 +5686,8 @@ class FunctionTypedFormalParameter extends NormalFormalParameter {
* Set the parameters of the function-typed parameter to the given parameters.
* @param parameters the parameters of the function-typed parameter
*/
- void set parameters(FormalParameterList parameters5) {
- this._parameters = becomeParentOf(parameters5);
+ void set parameters(FormalParameterList parameters2) {
+ this._parameters = becomeParentOf(parameters2);
}
/**
* Set the return type of the function to the given type.
@@ -5917,15 +5917,15 @@ class IfStatement extends Statement {
* Set the left parenthesis to the given token.
* @param leftParenthesis the left parenthesis
*/
- void set leftParenthesis(Token leftParenthesis5) {
- this._leftParenthesis = leftParenthesis5;
+ void set leftParenthesis(Token leftParenthesis2) {
+ this._leftParenthesis = leftParenthesis2;
}
/**
* Set the right parenthesis to the given token.
* @param rightParenthesis the right parenthesis
*/
- void set rightParenthesis(Token rightParenthesis5) {
- this._rightParenthesis = rightParenthesis5;
+ void set rightParenthesis(Token rightParenthesis2) {
+ this._rightParenthesis = rightParenthesis2;
}
/**
* Set the statement that is executed if the condition evaluates to {@code true} to the given
@@ -5992,8 +5992,8 @@ class ImplementsClause extends ASTNode {
* Set the token representing the 'implements' keyword to the given token.
* @param keyword the token representing the 'implements' keyword
*/
- void set keyword(Token keyword12) {
- this._keyword = keyword12;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
void visitChildren(ASTVisitor<Object> visitor) {
_interfaces.accept(visitor);
@@ -6118,8 +6118,8 @@ class IndexExpression extends Expression {
* @param index the expression used to compute the index
* @param rightBracket the right square bracket
*/
- IndexExpression.forTarget_full(Expression target3, Token leftBracket4, Expression index2, Token rightBracket4) {
- _jtd_constructor_58_impl(target3, leftBracket4, index2, rightBracket4);
+ IndexExpression.forTarget_full(Expression target2, Token leftBracket2, Expression index2, Token rightBracket2) {
+ _jtd_constructor_58_impl(target2, leftBracket2, index2, rightBracket2);
}
/**
* Initialize a newly created index expression.
@@ -6128,12 +6128,12 @@ class IndexExpression extends Expression {
* @param index the expression used to compute the index
* @param rightBracket the right square bracket
*/
- IndexExpression.forTarget({Expression target3, Token leftBracket4, Expression index2, Token rightBracket4}) : this.forTarget_full(target3, leftBracket4, index2, rightBracket4);
- _jtd_constructor_58_impl(Expression target3, Token leftBracket4, Expression index2, Token rightBracket4) {
- this._target = becomeParentOf(target3);
- this._leftBracket = leftBracket4;
+ IndexExpression.forTarget({Expression target2, Token leftBracket2, Expression index2, Token rightBracket2}) : this.forTarget_full(target2, leftBracket2, index2, rightBracket2);
+ _jtd_constructor_58_impl(Expression target2, Token leftBracket2, Expression index2, Token rightBracket2) {
+ this._target = becomeParentOf(target2);
+ this._leftBracket = leftBracket2;
this._index = becomeParentOf(index2);
- this._rightBracket = rightBracket4;
+ this._rightBracket = rightBracket2;
}
/**
* Initialize a newly created index expression.
@@ -6142,8 +6142,8 @@ class IndexExpression extends Expression {
* @param index the expression used to compute the index
* @param rightBracket the right square bracket
*/
- IndexExpression.forCascade_full(Token period7, Token leftBracket5, Expression index3, Token rightBracket5) {
- _jtd_constructor_59_impl(period7, leftBracket5, index3, rightBracket5);
+ IndexExpression.forCascade_full(Token period2, Token leftBracket2, Expression index2, Token rightBracket2) {
+ _jtd_constructor_59_impl(period2, leftBracket2, index2, rightBracket2);
}
/**
* Initialize a newly created index expression.
@@ -6152,12 +6152,12 @@ class IndexExpression extends Expression {
* @param index the expression used to compute the index
* @param rightBracket the right square bracket
*/
- IndexExpression.forCascade({Token period7, Token leftBracket5, Expression index3, Token rightBracket5}) : this.forCascade_full(period7, leftBracket5, index3, rightBracket5);
- _jtd_constructor_59_impl(Token period7, Token leftBracket5, Expression index3, Token rightBracket5) {
- this._period = period7;
- this._leftBracket = leftBracket5;
- this._index = becomeParentOf(index3);
- this._rightBracket = rightBracket5;
+ IndexExpression.forCascade({Token period2, Token leftBracket2, Expression index2, Token rightBracket2}) : this.forCascade_full(period2, leftBracket2, index2, rightBracket2);
+ _jtd_constructor_59_impl(Token period2, Token leftBracket2, Expression index2, Token rightBracket2) {
+ this._period = period2;
+ this._leftBracket = leftBracket2;
+ this._index = becomeParentOf(index2);
+ this._rightBracket = rightBracket2;
}
accept(ASTVisitor visitor) => visitor.visitIndexExpression(this);
/**
@@ -6231,9 +6231,9 @@ class IndexExpression extends Expression {
* @return {@code true} if this expression is in a context where the operator '[]' will be invoked
*/
bool inGetterContext() {
- ASTNode parent4 = parent;
- if (parent4 is AssignmentExpression) {
- AssignmentExpression assignment = parent4 as AssignmentExpression;
+ ASTNode parent2 = parent;
+ if (parent2 is AssignmentExpression) {
+ AssignmentExpression assignment = parent2 as AssignmentExpression;
if (identical(assignment.leftHandSide, this) && identical(assignment.operator.type, TokenType.EQ)) {
return false;
}
@@ -6249,13 +6249,13 @@ class IndexExpression extends Expression {
* invoked
*/
bool inSetterContext() {
- ASTNode parent5 = parent;
- if (parent5 is PrefixExpression) {
- return ((parent5 as PrefixExpression)).operator.type.isIncrementOperator();
- } else if (parent5 is PostfixExpression) {
+ ASTNode parent2 = parent;
+ if (parent2 is PrefixExpression) {
+ return ((parent2 as PrefixExpression)).operator.type.isIncrementOperator();
+ } else if (parent2 is PostfixExpression) {
return true;
- } else if (parent5 is AssignmentExpression) {
- return identical(((parent5 as AssignmentExpression)).leftHandSide, this);
+ } else if (parent2 is AssignmentExpression) {
+ return identical(((parent2 as AssignmentExpression)).leftHandSide, this);
}
return false;
}
@@ -6277,8 +6277,8 @@ class IndexExpression extends Expression {
* Set the element associated with the operator to the given element.
* @param element the element associated with this operator
*/
- void set element(MethodElement element11) {
- this._element = element11;
+ void set element(MethodElement element2) {
+ this._element = element2;
}
/**
* Set the expression used to compute the index to the given expression.
@@ -6298,8 +6298,8 @@ class IndexExpression extends Expression {
* Set the period ("..") before a cascaded index expression to the given token.
* @param period the period ("..") before a cascaded index expression
*/
- void set period(Token period8) {
- this._period = period8;
+ void set period(Token period2) {
+ this._period = period2;
}
/**
* Set the right square bracket to the given token.
@@ -6390,29 +6390,29 @@ class InstanceCreationExpression extends Expression {
* Set the list of arguments to the constructor to the given list.
* @param argumentList the list of arguments to the constructor
*/
- void set argumentList(ArgumentList argumentList6) {
- this._argumentList = becomeParentOf(argumentList6);
+ void set argumentList(ArgumentList argumentList2) {
+ this._argumentList = becomeParentOf(argumentList2);
}
/**
* Set the name of the constructor to be invoked to the given name.
* @param constructorName the name of the constructor to be invoked
*/
- void set constructorName(ConstructorName constructorName3) {
- this._constructorName = constructorName3;
+ void set constructorName(ConstructorName constructorName2) {
+ this._constructorName = constructorName2;
}
/**
* Set the element associated with the constructor to the given element.
* @param element the element associated with the constructor
*/
- void set element(ConstructorElement element12) {
- this._element = element12;
+ void set element(ConstructorElement element2) {
+ this._element = element2;
}
/**
* Set the keyword used to indicate how an object should be created to the given keyword.
* @param keyword the keyword used to indicate how an object should be created
*/
- void set keyword(Token keyword13) {
- this._keyword = keyword13;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_constructorName, visitor);
@@ -6474,15 +6474,15 @@ class IntegerLiteral extends Literal {
* Set the token representing the literal to the given token.
* @param literal the token representing the literal
*/
- void set literal(Token literal4) {
- this._literal = literal4;
+ void set literal(Token literal2) {
+ this._literal = literal2;
}
/**
* Set the value of the literal to the given value.
* @param value the value of the literal
*/
- void set value(int value6) {
- this._value = value6;
+ void set value(int value2) {
+ this._value = value2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -6564,22 +6564,22 @@ class InterpolationExpression extends InterpolationElement {
* expression.
* @param expression the expression to be evaluated for the value to be converted into a string
*/
- void set expression(Expression expression6) {
- this._expression = becomeParentOf(expression6);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the left curly bracket to the given token.
* @param leftBracket the left curly bracket
*/
- void set leftBracket(Token leftBracket6) {
- this._leftBracket = leftBracket6;
+ void set leftBracket(Token leftBracket2) {
+ this._leftBracket = leftBracket2;
}
/**
* Set the right curly bracket to the given token.
* @param rightBracket the right curly bracket
*/
- void set rightBracket(Token rightBracket6) {
- this._rightBracket = rightBracket6;
+ void set rightBracket(Token rightBracket2) {
+ this._rightBracket = rightBracket2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_expression, visitor);
@@ -6720,8 +6720,8 @@ class IsExpression extends Expression {
* expression.
* @param expression the expression used to compute the value whose type is being tested
*/
- void set expression(Expression expression7) {
- this._expression = becomeParentOf(expression7);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the is operator being applied to the given operator.
@@ -6797,15 +6797,15 @@ class Label extends ASTNode {
* Set the colon that separates the label from the statement to the given token.
* @param colon the colon that separates the label from the statement
*/
- void set colon(Token colon3) {
- this._colon = colon3;
+ void set colon(Token colon2) {
+ this._colon = colon2;
}
/**
* Set the label being associated with the statement to the given label.
* @param label the label being associated with the statement
*/
- void set label(SimpleIdentifier label3) {
- this._label = becomeParentOf(label3);
+ void set label(SimpleIdentifier label2) {
+ this._label = becomeParentOf(label2);
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_label, visitor);
@@ -6944,15 +6944,15 @@ class LibraryDirective extends Directive {
* Set the name of the library being defined to the given name.
* @param name the name of the library being defined
*/
- void set name(LibraryIdentifier name7) {
- this._name = becomeParentOf(name7);
+ void set name(LibraryIdentifier name2) {
+ this._name = becomeParentOf(name2);
}
/**
* Set the semicolon terminating the directive to the given token.
* @param semicolon the semicolon terminating the directive
*/
- void set semicolon(Token semicolon11) {
- this._semicolon = semicolon11;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
super.visitChildren(visitor);
@@ -7063,9 +7063,9 @@ class ListLiteral extends TypedLiteral {
if (token != null) {
return token;
}
- TypeArgumentList typeArguments6 = typeArguments;
- if (typeArguments6 != null) {
- return typeArguments6.beginToken;
+ TypeArgumentList typeArguments2 = typeArguments;
+ if (typeArguments2 != null) {
+ return typeArguments2.beginToken;
}
return _leftBracket;
}
@@ -7165,9 +7165,9 @@ class MapLiteral extends TypedLiteral {
if (token != null) {
return token;
}
- TypeArgumentList typeArguments7 = typeArguments;
- if (typeArguments7 != null) {
- return typeArguments7.beginToken;
+ TypeArgumentList typeArguments2 = typeArguments;
+ if (typeArguments2 != null) {
+ return typeArguments2.beginToken;
}
return _leftBracket;
}
@@ -7273,8 +7273,8 @@ class MapLiteralEntry extends ASTNode {
* Set the colon that separates the key from the value to the given token.
* @param separator the colon that separates the key from the value
*/
- void set separator(Token separator4) {
- this._separator = separator4;
+ void set separator(Token separator2) {
+ this._separator = separator2;
}
/**
* Set the expression computing the value that will be associated with the key to the given
@@ -7463,8 +7463,8 @@ class MethodDeclaration extends ClassMember {
* Set the token for the 'external' keyword to the given token.
* @param externalKeyword the token for the 'external' keyword
*/
- void set externalKeyword(Token externalKeyword4) {
- this._externalKeyword = externalKeyword4;
+ void set externalKeyword(Token externalKeyword2) {
+ this._externalKeyword = externalKeyword2;
}
/**
* Set the token representing the 'abstract' or 'static' keyword to the given token.
@@ -7491,15 +7491,15 @@ class MethodDeclaration extends ClassMember {
* Set the parameters associated with the method to the given list of parameters.
* @param parameters the parameters associated with the method
*/
- void set parameters(FormalParameterList parameters6) {
- this._parameters = becomeParentOf(parameters6);
+ void set parameters(FormalParameterList parameters2) {
+ this._parameters = becomeParentOf(parameters2);
}
/**
* Set the token representing the 'get' or 'set' keyword to the given token.
* @param propertyKeyword the token representing the 'get' or 'set' keyword
*/
- void set propertyKeyword(Token propertyKeyword3) {
- this._propertyKeyword = propertyKeyword3;
+ void set propertyKeyword(Token propertyKeyword2) {
+ this._propertyKeyword = propertyKeyword2;
}
/**
* Set the return type of the method to the given type name.
@@ -7642,8 +7642,8 @@ class MethodInvocation extends Expression {
* Set the list of arguments to the method to the given list.
* @param argumentList the list of arguments to the method
*/
- void set argumentList(ArgumentList argumentList7) {
- this._argumentList = becomeParentOf(argumentList7);
+ void set argumentList(ArgumentList argumentList2) {
+ this._argumentList = becomeParentOf(argumentList2);
}
/**
* Set the name of the method being invoked to the given identifier.
@@ -7656,8 +7656,8 @@ class MethodInvocation extends Expression {
* Set the period that separates the target from the method name to the given token.
* @param period the period that separates the target from the method name
*/
- void set period(Token period9) {
- this._period = period9;
+ void set period(Token period2) {
+ this._period = period2;
}
/**
* Set the expression producing the object on which the method is defined to the given expression.
@@ -7711,9 +7711,9 @@ class NamedExpression extends Expression {
* @return the element representing the parameter being named by this expression
*/
ParameterElement get element {
- Element element22 = _name.label.element;
- if (element22 is ParameterElement) {
- return element22 as ParameterElement;
+ Element element2 = _name.label.element;
+ if (element2 is ParameterElement) {
+ return element2 as ParameterElement;
}
return null;
}
@@ -7732,8 +7732,8 @@ class NamedExpression extends Expression {
* Set the expression with which the name is associated to the given expression.
* @param expression the expression with which the name is associated
*/
- void set expression(Expression expression8) {
- this._expression = becomeParentOf(expression8);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the name associated with the expression to the given identifier.
@@ -7815,8 +7815,8 @@ abstract class NamespaceDirective extends UriBasedDirective {
* Set the semicolon terminating the directive to the given token.
* @param semicolon the semicolon terminating the directive
*/
- void set semicolon(Token semicolon12) {
- this._semicolon = semicolon12;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
Token get firstTokenAfterCommentAndMetadata => _keyword;
}
@@ -7932,9 +7932,9 @@ abstract class NormalFormalParameter extends FormalParameter {
Comment get documentationComment => _comment;
SimpleIdentifier get identifier => _identifier;
ParameterKind get kind {
- ASTNode parent6 = parent;
- if (parent6 is DefaultFormalParameter) {
- return ((parent6 as DefaultFormalParameter)).kind;
+ ASTNode parent2 = parent;
+ if (parent2 is DefaultFormalParameter) {
+ return ((parent2 as DefaultFormalParameter)).kind;
}
return ParameterKind.REQUIRED;
}
@@ -7959,15 +7959,15 @@ abstract class NormalFormalParameter extends FormalParameter {
* Set the documentation comment associated with this parameter to the given comment
* @param comment the documentation comment to be associated with this parameter
*/
- void set documentationComment(Comment comment3) {
- this._comment = becomeParentOf(comment3);
+ void set documentationComment(Comment comment2) {
+ this._comment = becomeParentOf(comment2);
}
/**
* Set the name of the parameter being declared to the given identifier.
* @param identifier the name of the parameter being declared
*/
- void set identifier(SimpleIdentifier identifier9) {
- this._identifier = becomeParentOf(identifier9);
+ void set identifier(SimpleIdentifier identifier2) {
+ this._identifier = becomeParentOf(identifier2);
}
void visitChildren(ASTVisitor<Object> visitor) {
if (commentIsBeforeAnnotations()) {
@@ -8042,8 +8042,8 @@ class NullLiteral extends Literal {
* Set the token representing the literal to the given token.
* @param literal the token representing the literal
*/
- void set literal(Token literal5) {
- this._literal = literal5;
+ void set literal(Token literal2) {
+ this._literal = literal2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -8109,8 +8109,8 @@ class ParenthesizedExpression extends Expression {
* Set the expression within the parentheses to the given expression.
* @param expression the expression within the parentheses
*/
- void set expression(Expression expression9) {
- this._expression = becomeParentOf(expression9);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the left parenthesis to the given token.
@@ -8191,8 +8191,8 @@ class PartDirective extends UriBasedDirective {
* Set the semicolon terminating the directive to the given token.
* @param semicolon the semicolon terminating the directive
*/
- void set semicolon(Token semicolon13) {
- this._semicolon = semicolon13;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
Token get firstTokenAfterCommentAndMetadata => _partToken;
}
@@ -8286,15 +8286,15 @@ class PartOfDirective extends Directive {
* Set the token representing the 'part' token to the given token.
* @param partToken the token representing the 'part' token
*/
- void set partToken(Token partToken3) {
- this._partToken = partToken3;
+ void set partToken(Token partToken2) {
+ this._partToken = partToken2;
}
/**
* Set the semicolon terminating the directive to the given token.
* @param semicolon the semicolon terminating the directive
*/
- void set semicolon(Token semicolon14) {
- this._semicolon = semicolon14;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
super.visitChildren(visitor);
@@ -8361,8 +8361,8 @@ class PostfixExpression extends Expression {
* Set the element associated with the operator to the given element.
* @param element the element associated with the operator
*/
- void set element(MethodElement element13) {
- this._element = element13;
+ void set element(MethodElement element2) {
+ this._element = element2;
}
/**
* Set the expression computing the operand for the operator to the given expression.
@@ -8375,8 +8375,8 @@ class PostfixExpression extends Expression {
* Set the postfix operator being applied to the operand to the given operator.
* @param operator the postfix operator being applied to the operand
*/
- void set operator(Token operator4) {
- this._operator = operator4;
+ void set operator(Token operator2) {
+ this._operator = operator2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_operand, visitor);
@@ -8441,8 +8441,8 @@ class PrefixExpression extends Expression {
* Set the element associated with the operator to the given element.
* @param element the element associated with the operator
*/
- void set element(MethodElement element14) {
- this._element = element14;
+ void set element(MethodElement element2) {
+ this._element = element2;
}
/**
* Set the expression computing the operand for the operator to the given expression.
@@ -8455,8 +8455,8 @@ class PrefixExpression extends Expression {
* Set the prefix operator being applied to the operand to the given operator.
* @param operator the prefix operator being applied to the operand
*/
- void set operator(Token operator5) {
- this._operator = operator5;
+ void set operator(Token operator2) {
+ this._operator = operator2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_operand, visitor);
@@ -8530,15 +8530,15 @@ class PrefixedIdentifier extends Identifier {
* Set the identifier being prefixed to the given identifier.
* @param identifier the identifier being prefixed
*/
- void set identifier(SimpleIdentifier identifier10) {
- this._identifier = becomeParentOf(identifier10);
+ void set identifier(SimpleIdentifier identifier2) {
+ this._identifier = becomeParentOf(identifier2);
}
/**
* Set the period used to separate the prefix from the identifier to the given token.
* @param period the period used to separate the prefix from the identifier
*/
- void set period(Token period10) {
- this._period = period10;
+ void set period(Token period2) {
+ this._period = period2;
}
/**
* Set the prefix associated with the library in which the identifier is defined to the given
@@ -8649,8 +8649,8 @@ class PropertyAccess extends Expression {
* Set the property access operator to the given token.
* @param operator the property access operator
*/
- void set operator(Token operator6) {
- this._operator = operator6;
+ void set operator(Token operator2) {
+ this._operator = operator2;
}
/**
* Set the name of the property being accessed to the given identifier.
@@ -8761,8 +8761,8 @@ class RedirectingConstructorInvocation extends ConstructorInitializer {
* Set the list of arguments to the constructor to the given list.
* @param argumentList the list of arguments to the constructor
*/
- void set argumentList(ArgumentList argumentList8) {
- this._argumentList = becomeParentOf(argumentList8);
+ void set argumentList(ArgumentList argumentList2) {
+ this._argumentList = becomeParentOf(argumentList2);
}
/**
* Set the name of the constructor that is being invoked to the given identifier.
@@ -8775,23 +8775,23 @@ class RedirectingConstructorInvocation extends ConstructorInitializer {
* Set the element associated with the constructor to the given element.
* @param element the element associated with the constructor
*/
- void set element(ConstructorElement element15) {
- this._element = element15;
+ void set element(ConstructorElement element2) {
+ this._element = element2;
}
/**
* Set the token for the 'this' keyword to the given token.
* @param keyword the token for the 'this' keyword
*/
- void set keyword(Token keyword14) {
- this._keyword = keyword14;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the token for the period before the name of the constructor that is being invoked to the
* given token.
* @param period the token for the period before the name of the constructor that is being invoked
*/
- void set period(Token period11) {
- this._period = period11;
+ void set period(Token period2) {
+ this._period = period2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_constructorName, visitor);
@@ -8835,8 +8835,8 @@ class RethrowExpression extends Expression {
* Set the token representing the 'rethrow' keyword to the given token.
* @param keyword the token representing the 'rethrow' keyword
*/
- void set keyword(Token keyword15) {
- this._keyword = keyword15;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -8904,22 +8904,22 @@ class ReturnStatement extends Statement {
* Set the expression computing the value to be returned to the given expression.
* @param expression the expression computing the value to be returned
*/
- void set expression(Expression expression10) {
- this._expression = becomeParentOf(expression10);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the token representing the 'return' keyword to the given token.
* @param keyword the token representing the 'return' keyword
*/
- void set keyword(Token keyword16) {
- this._keyword = keyword16;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the semicolon terminating the statement to the given token.
* @param semicolon the semicolon terminating the statement
*/
- void set semicolon(Token semicolon15) {
- this._semicolon = semicolon15;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_expression, visitor);
@@ -8963,8 +8963,8 @@ class ScriptTag extends ASTNode {
* Set the token representing this script tag to the given script tag.
* @param scriptTag the token representing this script tag
*/
- void set scriptTag(Token scriptTag3) {
- this._scriptTag = scriptTag3;
+ void set scriptTag(Token scriptTag2) {
+ this._scriptTag = scriptTag2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -9075,8 +9075,8 @@ class SimpleFormalParameter extends NormalFormalParameter {
* Set the token representing either the 'final', 'const' or 'var' keyword to the given token.
* @param keyword the token representing either the 'final', 'const' or 'var' keyword
*/
- void set keyword(Token keyword17) {
- this._keyword = keyword17;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the name of the declared type of the parameter to the given type name.
@@ -9138,30 +9138,30 @@ class SimpleIdentifier extends Identifier {
* @return {@code true} if this identifier is the name being declared in a declaration
*/
bool inDeclarationContext() {
- ASTNode parent7 = parent;
- if (parent7 is CatchClause) {
- CatchClause clause = parent7 as CatchClause;
+ ASTNode parent2 = parent;
+ if (parent2 is CatchClause) {
+ CatchClause clause = parent2 as CatchClause;
return identical(this, clause.exceptionParameter) || identical(this, clause.stackTraceParameter);
- } else if (parent7 is ClassDeclaration) {
- return identical(this, ((parent7 as ClassDeclaration)).name);
- } else if (parent7 is ClassTypeAlias) {
- return identical(this, ((parent7 as ClassTypeAlias)).name);
- } else if (parent7 is ConstructorDeclaration) {
- return identical(this, ((parent7 as ConstructorDeclaration)).name);
- } else if (parent7 is FunctionDeclaration) {
- return identical(this, ((parent7 as FunctionDeclaration)).name);
- } else if (parent7 is FunctionTypeAlias) {
- return identical(this, ((parent7 as FunctionTypeAlias)).name);
- } else if (parent7 is Label) {
- return identical(this, ((parent7 as Label)).label) && (parent7.parent is LabeledStatement);
- } else if (parent7 is MethodDeclaration) {
- return identical(this, ((parent7 as MethodDeclaration)).name);
- } else if (parent7 is FunctionTypedFormalParameter || parent7 is SimpleFormalParameter) {
- return identical(this, ((parent7 as NormalFormalParameter)).identifier);
- } else if (parent7 is TypeParameter) {
- return identical(this, ((parent7 as TypeParameter)).name);
- } else if (parent7 is VariableDeclaration) {
- return identical(this, ((parent7 as VariableDeclaration)).name);
+ } else if (parent2 is ClassDeclaration) {
+ return identical(this, ((parent2 as ClassDeclaration)).name);
+ } else if (parent2 is ClassTypeAlias) {
+ return identical(this, ((parent2 as ClassTypeAlias)).name);
+ } else if (parent2 is ConstructorDeclaration) {
+ return identical(this, ((parent2 as ConstructorDeclaration)).name);
+ } else if (parent2 is FunctionDeclaration) {
+ return identical(this, ((parent2 as FunctionDeclaration)).name);
+ } else if (parent2 is FunctionTypeAlias) {
+ return identical(this, ((parent2 as FunctionTypeAlias)).name);
+ } else if (parent2 is Label) {
+ return identical(this, ((parent2 as Label)).label) && (parent2.parent is LabeledStatement);
+ } else if (parent2 is MethodDeclaration) {
+ return identical(this, ((parent2 as MethodDeclaration)).name);
+ } else if (parent2 is FunctionTypedFormalParameter || parent2 is SimpleFormalParameter) {
+ return identical(this, ((parent2 as NormalFormalParameter)).identifier);
+ } else if (parent2 is TypeParameter) {
+ return identical(this, ((parent2 as TypeParameter)).name);
+ } else if (parent2 is VariableDeclaration) {
+ return identical(this, ((parent2 as VariableDeclaration)).name);
}
return false;
}
@@ -9173,28 +9173,28 @@ class SimpleIdentifier extends Identifier {
* @return {@code true} if this expression is in a context where a getter will be invoked
*/
bool inGetterContext() {
- ASTNode parent8 = parent;
+ ASTNode parent2 = parent;
ASTNode target = this;
- if (parent8 is PrefixedIdentifier) {
- PrefixedIdentifier prefixed = parent8 as PrefixedIdentifier;
+ if (parent2 is PrefixedIdentifier) {
+ PrefixedIdentifier prefixed = parent2 as PrefixedIdentifier;
if (identical(prefixed.prefix, this)) {
return true;
}
- parent8 = prefixed.parent;
+ parent2 = prefixed.parent;
target = prefixed;
- } else if (parent8 is PropertyAccess) {
- PropertyAccess access = parent8 as PropertyAccess;
+ } else if (parent2 is PropertyAccess) {
+ PropertyAccess access = parent2 as PropertyAccess;
if (identical(access.target, this)) {
return true;
}
- parent8 = access.parent;
+ parent2 = access.parent;
target = access;
}
- if (parent8 is Label) {
+ if (parent2 is Label) {
return false;
}
- if (parent8 is AssignmentExpression) {
- AssignmentExpression expr = parent8 as AssignmentExpression;
+ if (parent2 is AssignmentExpression) {
+ AssignmentExpression expr = parent2 as AssignmentExpression;
if (identical(expr.leftHandSide, target) && identical(expr.operator.type, TokenType.EQ)) {
return false;
}
@@ -9209,29 +9209,29 @@ class SimpleIdentifier extends Identifier {
* @return {@code true} if this expression is in a context where a setter will be invoked
*/
bool inSetterContext() {
- ASTNode parent9 = parent;
+ ASTNode parent2 = parent;
ASTNode target = this;
- if (parent9 is PrefixedIdentifier) {
- PrefixedIdentifier prefixed = parent9 as PrefixedIdentifier;
+ if (parent2 is PrefixedIdentifier) {
+ PrefixedIdentifier prefixed = parent2 as PrefixedIdentifier;
if (identical(prefixed.prefix, this)) {
return false;
}
- parent9 = prefixed.parent;
+ parent2 = prefixed.parent;
target = prefixed;
- } else if (parent9 is PropertyAccess) {
- PropertyAccess access = parent9 as PropertyAccess;
+ } else if (parent2 is PropertyAccess) {
+ PropertyAccess access = parent2 as PropertyAccess;
if (identical(access.target, this)) {
return false;
}
- parent9 = access.parent;
+ parent2 = access.parent;
target = access;
}
- if (parent9 is PrefixExpression) {
- return ((parent9 as PrefixExpression)).operator.type.isIncrementOperator();
- } else if (parent9 is PostfixExpression) {
+ if (parent2 is PrefixExpression) {
+ return ((parent2 as PrefixExpression)).operator.type.isIncrementOperator();
+ } else if (parent2 is PostfixExpression) {
return true;
- } else if (parent9 is AssignmentExpression) {
- return identical(((parent9 as AssignmentExpression)).leftHandSide, target);
+ } else if (parent2 is AssignmentExpression) {
+ return identical(((parent2 as AssignmentExpression)).leftHandSide, target);
}
return false;
}
@@ -9240,15 +9240,15 @@ class SimpleIdentifier extends Identifier {
* Set the element associated with this identifier to the given element.
* @param element the element associated with this identifier
*/
- void set element(Element element16) {
- this._element = element16;
+ void set element(Element element2) {
+ this._element = element2;
}
/**
* Set the token representing the identifier to the given token.
* @param token the token representing the literal
*/
- void set token(Token token17) {
- this._token = token17;
+ void set token(Token token2) {
+ this._token = token2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -9331,8 +9331,8 @@ class SimpleStringLiteral extends StringLiteral {
* Set the token representing the literal to the given token.
* @param literal the token representing the literal
*/
- void set literal(Token literal6) {
- this._literal = literal6;
+ void set literal(Token literal2) {
+ this._literal = literal2;
}
/**
* Set the value of the literal to the given string.
@@ -9488,8 +9488,8 @@ class SuperConstructorInvocation extends ConstructorInitializer {
* Set the list of arguments to the constructor to the given list.
* @param argumentList the list of arguments to the constructor
*/
- void set argumentList(ArgumentList argumentList9) {
- this._argumentList = becomeParentOf(argumentList9);
+ void set argumentList(ArgumentList argumentList2) {
+ this._argumentList = becomeParentOf(argumentList2);
}
/**
* Set the name of the constructor that is being invoked to the given identifier.
@@ -9502,23 +9502,23 @@ class SuperConstructorInvocation extends ConstructorInitializer {
* Set the element associated with the constructor to the given element.
* @param element the element associated with the constructor
*/
- void set element(ConstructorElement element17) {
- this._element = element17;
+ void set element(ConstructorElement element2) {
+ this._element = element2;
}
/**
* Set the token for the 'super' keyword to the given token.
* @param keyword the token for the 'super' keyword
*/
- void set keyword(Token keyword18) {
- this._keyword = keyword18;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the token for the period before the name of the constructor that is being invoked to the
* given token.
* @param period the token for the period before the name of the constructor that is being invoked
*/
- void set period(Token period12) {
- this._period = period12;
+ void set period(Token period2) {
+ this._period = period2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_constructorName, visitor);
@@ -9562,8 +9562,8 @@ class SuperExpression extends Expression {
* Set the token representing the keyword to the given token.
* @param keyword the token representing the keyword
*/
- void set keyword(Token keyword19) {
- this._keyword = keyword19;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -9609,8 +9609,8 @@ class SwitchCase extends SwitchMember {
* Set the expression controlling whether the statements will be executed to the given expression.
* @param expression the expression controlling whether the statements will be executed
*/
- void set expression(Expression expression11) {
- this._expression = becomeParentOf(expression11);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
void visitChildren(ASTVisitor<Object> visitor) {
labels.accept(visitor);
@@ -9734,15 +9734,15 @@ abstract class SwitchMember extends ASTNode {
* Set the colon separating the keyword or the expression from the statements to the given token.
* @param colon the colon separating the keyword or the expression from the statements
*/
- void set colon(Token colon4) {
- this._colon = colon4;
+ void set colon(Token colon2) {
+ this._colon = colon2;
}
/**
* Set the token representing the 'case' or 'default' keyword to the given token.
* @param keyword the token representing the 'case' or 'default' keyword
*/
- void set keyword(Token keyword20) {
- this._keyword = keyword20;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
}
/**
@@ -9856,43 +9856,43 @@ class SwitchStatement extends Statement {
* expression.
* @param expression the expression used to determine which of the switch members will be selected
*/
- void set expression(Expression expression12) {
- this._expression = becomeParentOf(expression12);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the token representing the 'switch' keyword to the given token.
* @param keyword the token representing the 'switch' keyword
*/
- void set keyword(Token keyword21) {
- this._keyword = keyword21;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the left curly bracket to the given token.
* @param leftBracket the left curly bracket
*/
- void set leftBracket(Token leftBracket7) {
- this._leftBracket = leftBracket7;
+ void set leftBracket(Token leftBracket2) {
+ this._leftBracket = leftBracket2;
}
/**
* Set the left parenthesis to the given token.
* @param leftParenthesis the left parenthesis
*/
- void set leftParenthesis(Token leftParenthesis6) {
- this._leftParenthesis = leftParenthesis6;
+ void set leftParenthesis(Token leftParenthesis2) {
+ this._leftParenthesis = leftParenthesis2;
}
/**
* Set the right curly bracket to the given token.
* @param rightBracket the right curly bracket
*/
- void set rightBracket(Token rightBracket7) {
- this._rightBracket = rightBracket7;
+ void set rightBracket(Token rightBracket2) {
+ this._rightBracket = rightBracket2;
}
/**
* Set the right parenthesis to the given token.
* @param rightParenthesis the right parenthesis
*/
- void set rightParenthesis(Token rightParenthesis6) {
- this._rightParenthesis = rightParenthesis6;
+ void set rightParenthesis(Token rightParenthesis2) {
+ this._rightParenthesis = rightParenthesis2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_expression, visitor);
@@ -9936,8 +9936,8 @@ class ThisExpression extends Expression {
* Set the token representing the keyword to the given token.
* @param keyword the token representing the keyword
*/
- void set keyword(Token keyword22) {
- this._keyword = keyword22;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
void visitChildren(ASTVisitor<Object> visitor) {
}
@@ -9995,15 +9995,15 @@ class ThrowExpression extends Expression {
* Set the expression computing the exception to be thrown to the given expression.
* @param expression the expression computing the exception to be thrown
*/
- void set expression(Expression expression13) {
- this._expression = becomeParentOf(expression13);
+ void set expression(Expression expression2) {
+ this._expression = becomeParentOf(expression2);
}
/**
* Set the token representing the 'throw' keyword to the given token.
* @param keyword the token representing the 'throw' keyword
*/
- void set keyword(Token keyword23) {
- this._keyword = keyword23;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_expression, visitor);
@@ -10064,8 +10064,8 @@ class TopLevelVariableDeclaration extends CompilationUnitMember {
* Set the semicolon terminating the declaration to the given token.
* @param semicolon the semicolon terminating the declaration
*/
- void set semicolon(Token semicolon16) {
- this._semicolon = semicolon16;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
/**
* Set the top-level variables being declared to the given list of variables.
@@ -10264,15 +10264,15 @@ abstract class TypeAlias extends CompilationUnitMember {
* Set the token representing the 'typedef' keyword to the given token.
* @param keyword the token representing the 'typedef' keyword
*/
- void set keyword(Token keyword24) {
- this._keyword = keyword24;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the semicolon terminating the declaration to the given token.
* @param semicolon the semicolon terminating the declaration
*/
- void set semicolon(Token semicolon17) {
- this._semicolon = semicolon17;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
Token get firstTokenAfterCommentAndMetadata => _keyword;
}
@@ -10338,15 +10338,15 @@ class TypeArgumentList extends ASTNode {
* Set the left bracket to the given token.
* @param leftBracket the left bracket
*/
- void set leftBracket(Token leftBracket8) {
- this._leftBracket = leftBracket8;
+ void set leftBracket(Token leftBracket2) {
+ this._leftBracket = leftBracket2;
}
/**
* Set the right bracket to the given token.
* @param rightBracket the right bracket
*/
- void set rightBracket(Token rightBracket8) {
- this._rightBracket = rightBracket8;
+ void set rightBracket(Token rightBracket2) {
+ this._rightBracket = rightBracket2;
}
void visitChildren(ASTVisitor<Object> visitor) {
_arguments.accept(visitor);
@@ -10426,8 +10426,8 @@ class TypeName extends ASTNode {
* Set the type being named to the given type.
* @param type the type being named
*/
- void set type(Type2 type3) {
- this._type = type3;
+ void set type(Type2 type2) {
+ this._type = type2;
}
/**
* Set the type arguments associated with the type to the given type arguments.
@@ -10520,8 +10520,8 @@ class TypeParameter extends Declaration {
* Set the token representing the 'assert' keyword to the given token.
* @param keyword the token representing the 'assert' keyword
*/
- void set keyword(Token keyword25) {
- this._keyword = keyword25;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the name of the type parameter to the given identifier.
@@ -10656,8 +10656,8 @@ abstract class TypedLiteral extends Literal {
* Set the type argument associated with this literal to the given arguments.
* @param typeArguments the type argument associated with this literal
*/
- void set typeArguments(TypeArgumentList typeArguments3) {
- this._typeArguments = typeArguments3;
+ void set typeArguments(TypeArgumentList typeArguments2) {
+ this._typeArguments = typeArguments2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_typeArguments, visitor);
@@ -10783,8 +10783,8 @@ class VariableDeclaration extends Declaration {
* @return {@code true} if this variable was declared with the 'const' modifier
*/
bool isConst() {
- ASTNode parent10 = parent;
- return parent10 is VariableDeclarationList && ((parent10 as VariableDeclarationList)).isConst();
+ ASTNode parent2 = parent;
+ return parent2 is VariableDeclarationList && ((parent2 as VariableDeclarationList)).isConst();
}
/**
* Return {@code true} if this variable was declared with the 'final' modifier. Variables that are
@@ -10793,15 +10793,15 @@ class VariableDeclaration extends Declaration {
* @return {@code true} if this variable was declared with the 'final' modifier
*/
bool isFinal() {
- ASTNode parent11 = parent;
- return parent11 is VariableDeclarationList && ((parent11 as VariableDeclarationList)).isFinal();
+ ASTNode parent2 = parent;
+ return parent2 is VariableDeclarationList && ((parent2 as VariableDeclarationList)).isFinal();
}
/**
* Set the equal sign separating the variable name from the initial value to the given token.
* @param equals the equal sign separating the variable name from the initial value
*/
- void set equals(Token equals6) {
- this._equals = equals6;
+ void set equals(Token equals2) {
+ this._equals = equals2;
}
/**
* Set the expression used to compute the initial value for the variable to the given expression.
@@ -10814,8 +10814,8 @@ class VariableDeclaration extends Declaration {
* Set the name of the variable being declared to the given identifier.
* @param name the name of the variable being declared
*/
- void set name(SimpleIdentifier name8) {
- this._name = becomeParentOf(name8);
+ void set name(SimpleIdentifier name2) {
+ this._name = becomeParentOf(name2);
}
void visitChildren(ASTVisitor<Object> visitor) {
super.visitChildren(visitor);
@@ -10908,8 +10908,8 @@ class VariableDeclarationList extends AnnotatedNode {
* Set the token representing the 'final', 'const' or 'var' keyword to the given token.
* @param keyword the token representing the 'final', 'const' or 'var' keyword
*/
- void set keyword(Token keyword26) {
- this._keyword = keyword26;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the type of the variables being declared to the given type name.
@@ -10980,8 +10980,8 @@ class VariableDeclarationStatement extends Statement {
* Set the semicolon terminating the statement to the given token.
* @param semicolon the semicolon terminating the statement
*/
- void set semicolon(Token semicolon18) {
- this._semicolon = semicolon18;
+ void set semicolon(Token semicolon2) {
+ this._semicolon = semicolon2;
}
/**
* Set the variables being declared to the given list of variables.
@@ -11093,22 +11093,22 @@ class WhileStatement extends Statement {
* Set the token representing the 'while' keyword to the given token.
* @param keyword the token representing the 'while' keyword
*/
- void set keyword(Token keyword27) {
- this._keyword = keyword27;
+ void set keyword(Token keyword2) {
+ this._keyword = keyword2;
}
/**
* Set the left parenthesis to the given token.
* @param leftParenthesis the left parenthesis
*/
- void set leftParenthesis(Token leftParenthesis7) {
- this._leftParenthesis = leftParenthesis7;
+ void set leftParenthesis(Token leftParenthesis2) {
+ this._leftParenthesis = leftParenthesis2;
}
/**
* Set the right parenthesis to the given token.
* @param rightParenthesis the right parenthesis
*/
- void set rightParenthesis(Token rightParenthesis7) {
- this._rightParenthesis = rightParenthesis7;
+ void set rightParenthesis(Token rightParenthesis2) {
+ this._rightParenthesis = rightParenthesis2;
}
void visitChildren(ASTVisitor<Object> visitor) {
safelyVisitChild(_condition, visitor);
@@ -11383,11 +11383,11 @@ class ConstantEvaluator extends GeneralizingASTVisitor<Object> {
Map<String, Object> map = new Map<String, Object>();
for (MapLiteralEntry entry in node.entries) {
Object key2 = entry.key.accept(this);
- Object value8 = entry.value.accept(this);
- if (key2 is! String || identical(value8, NOT_A_CONSTANT)) {
+ Object value2 = entry.value.accept(this);
+ if (key2 is! String || identical(value2, NOT_A_CONSTANT)) {
return NOT_A_CONSTANT;
}
- map[(key2 as String)] = value8;
+ map[(key2 as String)] = value2;
}
return map;
}
@@ -11494,9 +11494,9 @@ class ElementLocator_ElementMapper extends GeneralizingASTVisitor<Element> {
Element visitPrefixedIdentifier(PrefixedIdentifier node) => node.element;
Element visitPrefixExpression(PrefixExpression node) => node.element;
Element visitStringLiteral(StringLiteral node) {
- ASTNode parent12 = node.parent;
- if (parent12 is UriBasedDirective) {
- return ((parent12 as UriBasedDirective)).element;
+ ASTNode parent2 = node.parent;
+ if (parent2 is UriBasedDirective) {
+ return ((parent2 as UriBasedDirective)).element;
}
return null;
}
@@ -12410,12 +12410,12 @@ class ToSourceVisitor implements ASTVisitor<Object> {
Object visitComment(Comment node) => null;
Object visitCommentReference(CommentReference node) => null;
Object visitCompilationUnit(CompilationUnit node) {
- ScriptTag scriptTag6 = node.scriptTag;
+ ScriptTag scriptTag2 = node.scriptTag;
NodeList<Directive> directives2 = node.directives;
- visit(scriptTag6);
- String prefix = scriptTag6 == null ? "" : " ";
+ visit(scriptTag2);
+ String prefix = scriptTag2 == null ? "" : " ";
visitList4(prefix, directives2, " ");
- prefix = scriptTag6 == null && directives2.isEmpty ? "" : " ";
+ prefix = scriptTag2 == null && directives2.isEmpty ? "" : " ";
visitList4(prefix, node.declarations, " ");
return null;
}
@@ -12542,10 +12542,10 @@ class ToSourceVisitor implements ASTVisitor<Object> {
Object visitFormalParameterList(FormalParameterList node) {
String groupEnd = null;
_writer.print('(');
- NodeList<FormalParameter> parameters10 = node.parameters;
- int size2 = parameters10.length;
+ NodeList<FormalParameter> parameters2 = node.parameters;
+ int size2 = parameters2.length;
for (int i = 0; i < size2; i++) {
- FormalParameter parameter = parameters10[i];
+ FormalParameter parameter = parameters2[i];
if (i > 0) {
_writer.print(", ");
}
@@ -12567,10 +12567,10 @@ class ToSourceVisitor implements ASTVisitor<Object> {
return null;
}
Object visitForStatement(ForStatement node) {
- Expression initialization3 = node.initialization;
+ Expression initialization2 = node.initialization;
_writer.print("for (");
- if (initialization3 != null) {
- visit(initialization3);
+ if (initialization2 != null) {
+ visit(initialization2);
} else {
visit(node.variables);
}
@@ -12833,12 +12833,12 @@ class ToSourceVisitor implements ASTVisitor<Object> {
return null;
}
Object visitReturnStatement(ReturnStatement node) {
- Expression expression14 = node.expression;
- if (expression14 == null) {
+ Expression expression2 = node.expression;
+ if (expression2 == null) {
_writer.print("return;");
} else {
_writer.print("return ");
- expression14.accept(this);
+ expression2.accept(this);
_writer.print(";");
}
return null;
@@ -13040,8 +13040,8 @@ class ToSourceVisitor implements ASTVisitor<Object> {
*/
void visitList2(NodeList<ASTNode> nodes, String separator) {
if (nodes != null) {
- int size3 = nodes.length;
- for (int i = 0; i < size3; i++) {
+ int size2 = nodes.length;
+ for (int i = 0; i < size2; i++) {
if (i > 0) {
_writer.print(separator);
}
@@ -13057,9 +13057,9 @@ class ToSourceVisitor implements ASTVisitor<Object> {
*/
void visitList3(NodeList<ASTNode> nodes, String separator, String suffix) {
if (nodes != null) {
- int size4 = nodes.length;
- if (size4 > 0) {
- for (int i = 0; i < size4; i++) {
+ int size2 = nodes.length;
+ if (size2 > 0) {
+ for (int i = 0; i < size2; i++) {
if (i > 0) {
_writer.print(separator);
}
@@ -13077,10 +13077,10 @@ class ToSourceVisitor implements ASTVisitor<Object> {
*/
void visitList4(String prefix, NodeList<ASTNode> nodes, String separator) {
if (nodes != null) {
- int size5 = nodes.length;
- if (size5 > 0) {
+ int size2 = nodes.length;
+ if (size2 > 0) {
_writer.print(prefix);
- for (int i = 0; i < size5; i++) {
+ for (int i = 0; i < size2; i++) {
if (i > 0) {
_writer.print(separator);
}
@@ -13122,11 +13122,11 @@ class ASTCloner implements ASTVisitor<ASTNode> {
}
CommentReference visitCommentReference(CommentReference node) => new CommentReference.full(node.newKeyword, clone(node.identifier));
CompilationUnit visitCompilationUnit(CompilationUnit node) {
- CompilationUnit clone3 = new CompilationUnit.full(node.beginToken, clone(node.scriptTag), clone2(node.directives), clone2(node.declarations), node.endToken);
- clone3.lineInfo = node.lineInfo;
- clone3.parsingErrors = node.parsingErrors;
- clone3.resolutionErrors = node.resolutionErrors;
- return clone3;
+ CompilationUnit clone22 = new CompilationUnit.full(node.beginToken, clone(node.scriptTag), clone2(node.directives), clone2(node.declarations), node.endToken);
+ clone22.lineInfo = node.lineInfo;
+ clone22.parsingErrors = node.parsingErrors;
+ clone22.resolutionErrors = node.resolutionErrors;
+ return clone22;
}
ConditionalExpression visitConditionalExpression(ConditionalExpression node) => new ConditionalExpression.full(clone(node.condition), node.question, clone(node.thenExpression), node.colon, clone(node.elseExpression));
ConstructorDeclaration visitConstructorDeclaration(ConstructorDeclaration node) => new ConstructorDeclaration.full(clone(node.documentationComment), clone2(node.metadata), node.externalKeyword, node.constKeyword, node.factoryKeyword, clone(node.returnType), node.period, clone(node.name), clone(node.parameters), node.separator, clone2(node.initializers), clone(node.redirectedConstructor), clone(node.body));
@@ -13159,11 +13159,11 @@ class ASTCloner implements ASTVisitor<ASTNode> {
ImplementsClause visitImplementsClause(ImplementsClause node) => new ImplementsClause.full(node.keyword, clone2(node.interfaces));
ImportDirective visitImportDirective(ImportDirective node) => new ImportDirective.full(clone(node.documentationComment), clone2(node.metadata), node.keyword, clone(node.uri), node.asToken, clone(node.prefix), clone2(node.combinators), node.semicolon);
IndexExpression visitIndexExpression(IndexExpression node) {
- Token period13 = node.period;
- if (period13 == null) {
+ Token period2 = node.period;
+ if (period2 == null) {
return new IndexExpression.forTarget_full(clone(node.array), node.leftBracket, clone(node.index), node.rightBracket);
} else {
- return new IndexExpression.forCascade_full(period13, node.leftBracket, clone(node.index), node.rightBracket);
+ return new IndexExpression.forCascade_full(period2, node.leftBracket, clone(node.index), node.rightBracket);
}
}
InstanceCreationExpression visitInstanceCreationExpression(InstanceCreationExpression node) => new InstanceCreationExpression.full(node.keyword, clone(node.constructorName), clone(node.argumentList));

Powered by Google App Engine
This is Rietveld 408576698