[Java] Class ClosureListExpression

  • org.codehaus.groovy.ast.expr.ClosureListExpression

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.

Authors:
Jochen Theodorou

Constructor Detail

public ClosureListExpression(List<Expression> expressions)

public ClosureListExpression()

Method Detail

public String getText()

public VariableScope getVariableScope()

public void setVariableScope(VariableScope scope)

public Expression transformExpression(ExpressionTransformer transformer)

public void visit(GroovyCodeVisitor visitor)

© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/2.4.21/html/gapi/org/codehaus/groovy/ast/expr/ClosureListExpression.html