Package org.codehaus.groovy.ast.expr
Class ClosureListExpression
- java.lang.Object
- 
- org.codehaus.groovy.ast.ASTNode
- 
- org.codehaus.groovy.ast.AnnotatedNode
- 
- org.codehaus.groovy.ast.expr.Expression
- 
- org.codehaus.groovy.ast.expr.ListExpression
- 
- org.codehaus.groovy.ast.expr.ClosureListExpression
 
 
 
 
 
- 
- All Implemented Interfaces:
- GroovydocHolder<AnnotatedNode>,- NodeMetaDataHandler
 
 public class ClosureListExpression extends ListExpression This class represents a list of expressions used to create closures. Example:def foo = (1;2;;)The right side is a ClosureListExpression consisting of two ConstantExpressions for the values 1 and 2, and two EmptyStatement entries. The ClosureListExpression defines a new variable scope. All created Closures share this scope.
- 
- 
Field Summary- 
Fields inherited from class org.codehaus.groovy.ast.expr.ExpressionEMPTY_ARRAY
 - 
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolderDOC_COMMENT
 
- 
 - 
Constructor SummaryConstructors Constructor Description ClosureListExpression()ClosureListExpression(List<Expression> expressions)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetText()VariableScopegetVariableScope()voidsetVariableScope(VariableScope scope)ExpressiontransformExpression(ExpressionTransformer transformer)Return a copy of the expression calling the transformer on any nested expressionsvoidvisit(GroovyCodeVisitor visitor)- 
Methods inherited from class org.codehaus.groovy.ast.expr.ListExpressionaddExpression, getExpression, getExpressions, isWrapped, setWrapped, toString
 - 
Methods inherited from class org.codehaus.groovy.ast.expr.ExpressiongetType, setType, transformExpressions, transformExpressions
 - 
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNodeaddAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
 - 
Methods inherited from class org.codehaus.groovy.ast.ASTNodecopyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandlercopyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
 
- 
 
- 
- 
- 
Constructor Detail- 
ClosureListExpressionpublic ClosureListExpression(List<Expression> expressions) 
 - 
ClosureListExpressionpublic ClosureListExpression() 
 
- 
 - 
Method Detail- 
visitpublic void visit(GroovyCodeVisitor visitor) - Overrides:
- visitin class- ListExpression
 
 - 
transformExpressionpublic Expression transformExpression(ExpressionTransformer transformer) Description copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Overrides:
- transformExpressionin class- ListExpression
 
 - 
setVariableScopepublic void setVariableScope(VariableScope scope) 
 - 
getVariableScopepublic VariableScope getVariableScope() 
 - 
getTextpublic String getText() - Overrides:
- getTextin class- ListExpression
 
 
- 
 
-