org.codehaus.groovy.ast.expr
Class ClosureExpression
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.expr.Expression
org.codehaus.groovy.ast.expr.ClosureExpression
- public class ClosureExpression
- extends Expression
Represents a closure creation expression such as { statement; }
or { i : statement; } or { i, x, String y: statement }
- Version:
- $Revision: 1.5 $
- Author:
- James Strachan
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ClosureExpression
public ClosureExpression(Parameter[] parameters,
Statement code)
visit
public void visit(GroovyCodeVisitor visitor)
- Overrides:
visit
in class ASTNode
transformExpression
public Expression transformExpression(ExpressionTransformer transformer)
- Description copied from class:
Expression
- Return a copy of the expression calling the transformer on any nested expressions
- Specified by:
transformExpression
in class Expression
- Parameters:
transformer
-
- Returns:
toString
public java.lang.String toString()
getCode
public Statement getCode()
getParameters
public Parameter[] getParameters()
isParameterSpecified
public boolean isParameterSpecified()
getVariableScope
public VariableScope getVariableScope()
setVariableScope
public void setVariableScope(VariableScope variableScope)
Copyright © 2003-2004 The Codehaus. All Rights Reserved.