org.codehaus.groovy.ast.expr
Class EmptyExpression
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.expr.Expression
org.codehaus.groovy.ast.expr.EmptyExpression
public class EmptyExpression
- extends Expression
This class is a place holder for an empty expression.
Empty expression are used in closures lists like (;). During
class Generation this expression should be either ignored or
reaplce with a null value.
- Author:
- Jochen Theodorou
- See Also:
EmptyStatement
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
INSTANCE
public static final EmptyExpression INSTANCE
EmptyExpression
public EmptyExpression()
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
visit
public void visit(GroovyCodeVisitor visitor)
- Overrides:
visit
in class ASTNode