Package org.codehaus.groovy.ast.expr
Class DeclarationExpression
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.expr.Expression
org.codehaus.groovy.ast.expr.BinaryExpression
org.codehaus.groovy.ast.expr.DeclarationExpression
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>,NodeMetaDataHandler
Represents one or more local variables. Typically it is a single local variable
declared by name with an expression like "def foo" or with type "String foo". However,
the multiple assignment feature allows you to create two or more variables using
an expression like:
def (x, y) = [1, 2].
You can access the left hand side of a declaration using the
"Expression getLeftExpression()" method. In which case you might then
use instanceof and casting to perform operations specific to a
single local variable (VariableExpression) or for the multiple
assignment case (TupleExpression).
Alternatively, if isMultipleAssignmentDeclaration() is false
you can use the method "VariableExpression getVariableExpression()" method.
Similarly, if isMultipleAssignmentDeclaration() is true
you can use the method "TupleExpression getTupleExpression()" method.
Calling either of these expression getters when the "isMultipleAssignment" condition
is not appropriate is unsafe and will result in a ClassCastException.
-
Field Summary
Fields inherited from class org.codehaus.groovy.ast.expr.Expression
EMPTY_ARRAYFields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT -
Constructor Summary
ConstructorsConstructorDescriptionDeclarationExpression(Expression left, Token operation, Expression right) Creates a declaration like "def v" or "int w = 0" or "def (x, y) = [1, 2]".DeclarationExpression(VariableExpression left, Token operation, Expression right) Creates a declaration like "def v" or "int w = 0". -
Method Summary
Modifier and TypeMethodDescriptiongetText()Returns a human-readable text representation of this AST node.This method returns the left hand side of the declaration cast to the TupleExpression type.getType()Returns the type of this expression.This method returns the left hand side of the declaration cast to the VariableExpression type.booleanThis method tells you if this declaration is a multiple assignment declaration, which has the form "def (x, y) = ..." in Groovy.voidsetLeftExpression(Expression leftExpression) This method sets the leftExpression for this BinaryExpression.voidsetRightExpression(Expression rightExpression) Sets the right operand of this binary expression.transformExpression(ExpressionTransformer transformer) Transforms this expression and any nested expressions according to the provided transformer.voidvisit(GroovyCodeVisitor visitor) Accepts a code visitor for AST traversal and transformation.Methods inherited from class org.codehaus.groovy.ast.expr.BinaryExpression
getLeftExpression, getOperation, getRightExpression, isSafe, newAssignmentExpression, newInitializationExpression, setSafe, toStringMethods inherited from class org.codehaus.groovy.ast.expr.Expression
setType, transformExpressions, transformExpressionsMethods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSyntheticMethods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePositionMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, newMetaDataMap, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
Constructor Details
-
DeclarationExpression
Creates a declaration like "def v" or "int w = 0".- Parameters:
left- the left hand side of a variable declarationoperation- the operation, assumed to be assignment operatorright- the right hand side of a declaration;EmptyExpressionfor no initial value
-
DeclarationExpression
Creates a declaration like "def v" or "int w = 0" or "def (x, y) = [1, 2]".- Parameters:
left- the left hand side of a declaration -- either aVariableExpressionor aTupleExpressionwith at least one elementoperation- the operation, assumed to be assignment operatorright- the right hand side of a declaration
-
-
Method Details
-
visit
Description copied from class:ASTNodeAccepts a code visitor for AST traversal and transformation. Subclasses must implement this method to support visitor pattern-based processing. The visitor pattern enables decoupling of AST structure from processing logic.- Overrides:
visitin classBinaryExpression- Parameters:
visitor- theGroovyCodeVisitorto process this node
-
getVariableExpression
This method returns the left hand side of the declaration cast to the VariableExpression type. This is an unsafe method to call. In a multiple assignment statement, the left hand side will be a TupleExpression and a ClassCastException will occur. If you invoke this method then be sure to invoke isMultipleAssignmentDeclaration() first to check that it is safe to do so. If that method returns true then this method is safe to call.- Returns:
- left hand side of normal variable declarations
- Throws:
ClassCastException- if the left hand side is not a VariableExpression (and is probably a multiple assignment statement).
-
getTupleExpression
This method returns the left hand side of the declaration cast to the TupleExpression type. This is an unsafe method to call. In a single assignment statement, the left hand side will be a VariableExpression and a ClassCastException will occur. If you invoke this method then be sure to invoke isMultipleAssignmentDeclaration() first to check that it is safe to do so. If that method returns true then this method is safe to call.- Returns:
- left hand side of multiple assignment declarations
- Throws:
ClassCastException- if the left hand side is not a TupleExpression (and is probably a VariableExpression).
-
getType
Description copied from class:ExpressionReturns the type of this expression. If the type has not been explicitly set, this method returns a dynamic type to support dynamic typing.- Overrides:
getTypein classExpression- Returns:
- the
ClassNoderepresenting this expression's type
-
getText
Description copied from class:ASTNodeReturns a human-readable text representation of this AST node. Used for debugging and error messages. Default implementation returns a message indicating the representation is not yet implemented for this node type.- Overrides:
getTextin classBinaryExpression- Returns:
- text representation of this node, or placeholder for unimplemented types
-
setLeftExpression
This method sets the leftExpression for this BinaryExpression. The parameter must be either a VariableExpression or a TupleExpression with one or more elements.- Overrides:
setLeftExpressionin classBinaryExpression- Parameters:
leftExpression- either a VariableExpression or a TupleExpression with one or more elements.
-
setRightExpression
Description copied from class:BinaryExpressionSets the right operand of this binary expression.- Overrides:
setRightExpressionin classBinaryExpression- Parameters:
rightExpression- the new right operand; must not be null
-
transformExpression
Description copied from class:ExpressionTransforms this expression and any nested expressions according to the provided transformer. This method is called during AST transformation phases and must recursively transform any nested expressions to support full AST tree transformation.- Overrides:
transformExpressionin classBinaryExpression- Parameters:
transformer- theExpressionTransformerto apply- Returns:
- a transformed copy of this expression (or this expression itself if no changes are needed)
-
isMultipleAssignmentDeclaration
public boolean isMultipleAssignmentDeclaration()This method tells you if this declaration is a multiple assignment declaration, which has the form "def (x, y) = ..." in Groovy. If this method returns true, then the left hand side is an ArgumentListExpression. Do not call "getVariableExpression()" on this object if this method returns true, instead use "getLeftExpression()".- Returns:
- true if this declaration is a multiple assignment declaration, which means the left hand side is an ArgumentListExpression.
-