Uses of Class
org.codehaus.groovy.ast.expr.BinaryExpression

Packages that use BinaryExpression
org.codehaus.groovy.ast Groovy AST nodes for the syntax of the language 
org.codehaus.groovy.ast.expr AST nodes for Groovy expressions 
org.codehaus.groovy.classgen Generates Java classes for Groovy classes using ASM. 
org.codehaus.groovy.control   
 

Uses of BinaryExpression in org.codehaus.groovy.ast
 

Methods in org.codehaus.groovy.ast with parameters of type BinaryExpression
 void GroovyCodeVisitor.visitBinaryExpression(BinaryExpression expression)
           
 void CodeVisitorSupport.visitBinaryExpression(BinaryExpression expression)
           
 

Uses of BinaryExpression in org.codehaus.groovy.ast.expr
 

Subclasses of BinaryExpression in org.codehaus.groovy.ast.expr
 class DeclarationExpression
          Represents a local variable name declaration, an expression like "def foo" or with type "String foo".
 

Methods in org.codehaus.groovy.ast.expr that return BinaryExpression
static BinaryExpression BinaryExpression.newAssignmentExpression(Variable variable, Expression rhs)
          Creates an assignment expression in which the specified expression is written into the specified variable name.
static BinaryExpression BinaryExpression.newInitializationExpression(String variable, ClassNode type, Expression rhs)
          Creates variable initialization expression in which the specified expression is written into the specified variable name.
 

Uses of BinaryExpression in org.codehaus.groovy.classgen
 

Methods in org.codehaus.groovy.classgen with parameters of type BinaryExpression
protected  void AsmClassGenerator.evaluateBinaryExpression(String method, BinaryExpression expression)
           
protected  void AsmClassGenerator.evaluateBinaryExpressionWithAsignment(String method, BinaryExpression expression)
           
protected  void AsmClassGenerator.evaluateCompareTo(BinaryExpression expression)
           
protected  void AsmClassGenerator.evaluateEqual(BinaryExpression expression)
           
protected  void AsmClassGenerator.evaluateInstanceof(BinaryExpression expression)
           
protected  void AsmClassGenerator.evaluateLogicalAndExpression(BinaryExpression expression)
           
protected  void AsmClassGenerator.evaluateLogicalOrExpression(BinaryExpression expression)
           
 void VerifierCodeVisitor.visitBinaryExpression(BinaryExpression expression)
           
 void AsmClassGenerator.visitBinaryExpression(BinaryExpression expression)
           
 void ClassCompletionVerifier.visitBinaryExpression(BinaryExpression expression)
           
 

Uses of BinaryExpression in org.codehaus.groovy.control
 

Methods in org.codehaus.groovy.control with parameters of type BinaryExpression
protected  Expression ResolveVisitor.transformBinaryExpression(BinaryExpression be)
           
 



Copyright © 2003-2010 The Codehaus. All Rights Reserved.