Package org.codehaus.groovy.transform.sc
Class ListOfExpressionsExpression
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.expr.Expression
org.codehaus.groovy.transform.sc.ListOfExpressionsExpression
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>,NodeMetaDataHandler
This class is used internally by the compiler to transform expressions
like multiple assignments into a list of assignments.
-
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
ConstructorsConstructorDescriptionCreates an empty list-backed expression container.ListOfExpressionsExpression(List<Expression> expressions) Creates a container for the supplied expressions. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddExpression(Expression expression) Appends an expression to this container.transformExpression(ExpressionTransformer transformer) Transforms each contained expression with the supplied transformer.voidvisit(GroovyCodeVisitor visitor) Visits each contained expression in declaration order.Methods inherited from class org.codehaus.groovy.ast.expr.Expression
getType, 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, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePositionMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, newMetaDataMap, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
Constructor Details
-
ListOfExpressionsExpression
public ListOfExpressionsExpression()Creates an empty list-backed expression container. -
ListOfExpressionsExpression
Creates a container for the supplied expressions.- Parameters:
expressions- the expressions to visit as a group
-
-
Method Details
-
transformExpression
Transforms each contained expression with the supplied transformer.- Specified by:
transformExpressionin classExpression- Parameters:
transformer- the expression transformer to apply- Returns:
- a container holding the transformed expressions
-
visit
Visits each contained expression in declaration order. -
addExpression
Appends an expression to this container.- Parameters:
expression- the expression to add
-