Package org.codehaus.groovy.ast.expr
Class BinaryExpression
- java.lang.Object
-
- org.codehaus.groovy.ast.ASTNode
-
- org.codehaus.groovy.ast.AnnotatedNode
-
- org.codehaus.groovy.ast.expr.Expression
-
- org.codehaus.groovy.ast.expr.BinaryExpression
-
- Direct Known Subclasses:
CompareIdentityExpression,CompareToNullExpression,DeclarationExpression
public class BinaryExpression extends Expression
Represents two expressions and an operation
-
-
Constructor Summary
Constructors Constructor Description BinaryExpression(Expression leftExpression, Token operation, Expression rightExpression)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressiongetLeftExpression()TokengetOperation()ExpressiongetRightExpression()StringgetText()static BinaryExpressionnewAssignmentExpression(Variable variable, Expression rhs)Creates an assignment expression in which the specified expression is written into the specified variable name.static BinaryExpressionnewInitializationExpression(String variable, ClassNode type, Expression rhs)Creates variable initialization expression in which the specified expression is written into the specified variable name.voidsetLeftExpression(Expression leftExpression)voidsetRightExpression(Expression rightExpression)StringtoString()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.Expression
getType, setType, transformExpressions, transformExpressions
-
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
-
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition
-
-
-
-
Constructor Detail
-
BinaryExpression
public BinaryExpression(Expression leftExpression, Token operation, Expression rightExpression)
-
-
Method Detail
-
visit
public void visit(GroovyCodeVisitor visitor)
-
transformExpression
public Expression transformExpression(ExpressionTransformer transformer)
Description copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Specified by:
transformExpressionin classExpression
-
getLeftExpression
public Expression getLeftExpression()
-
setLeftExpression
public void setLeftExpression(Expression leftExpression)
-
setRightExpression
public void setRightExpression(Expression rightExpression)
-
getOperation
public Token getOperation()
-
getRightExpression
public Expression getRightExpression()
-
newAssignmentExpression
public static BinaryExpression newAssignmentExpression(Variable variable, Expression rhs)
Creates an assignment expression in which the specified expression is written into the specified variable name.
-
newInitializationExpression
public static BinaryExpression newInitializationExpression(String variable, ClassNode type, Expression rhs)
Creates variable initialization expression in which the specified expression is written into the specified variable name.
-
-