Uses of Class
edu.ksu.cis.projects.bogor.ast.BinaryOp

Packages that use BinaryOp
edu.ksu.cis.projects.bogor.ast Provides for Bogor input language AST. 
edu.ksu.cis.projects.bogor.module Provide a generic framework for dataflow analysis on BIR transition systems. 
 

Uses of BinaryOp in edu.ksu.cis.projects.bogor.ast
 

Methods in edu.ksu.cis.projects.bogor.ast that return BinaryOp
 BinaryOp BinaryExp.getBinaryOp()
          Gets the binary operator.
static BinaryOp BinaryOp.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BinaryOp[] BinaryOp.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in edu.ksu.cis.projects.bogor.ast with parameters of type BinaryOp
 void BinaryExp.setBinaryOp(BinaryOp newBinaryOp)
          Sets the binary operator.
 

Constructors in edu.ksu.cis.projects.bogor.ast with parameters of type BinaryOp
BinaryExp(BinaryOp binaryOp, Exp exp1, Exp exp2)
          Default constructor.
 

Uses of BinaryOp in edu.ksu.cis.projects.bogor.module
 

Methods in edu.ksu.cis.projects.bogor.module with parameters of type BinaryOp
 IValue DefaultExpEvaluator.evaluateBinaryOp(BinaryOp binop, IDoubleValue value1, IDoubleValue value2)
           
 IValue IExpEvaluator.evaluateBinaryOp(BinaryOp binop, IDoubleValue value1, IDoubleValue value2)
           
 IValue DefaultExpEvaluator.evaluateBinaryOp(BinaryOp binop, IFloatValue value1, IFloatValue value2)
           
 IValue IExpEvaluator.evaluateBinaryOp(BinaryOp binop, IFloatValue value1, IFloatValue value2)
           
 IValue DefaultExpEvaluator.evaluateBinaryOp(BinaryOp binop, IIntValue value1, IIntValue value2)
           
 IValue IExpEvaluator.evaluateBinaryOp(BinaryOp binop, IIntValue value1, IIntValue value2)
           
 IValue DefaultExpEvaluator.evaluateBinaryOp(BinaryOp binop, ILongValue value1, ILongValue value2)
           
 IValue IExpEvaluator.evaluateBinaryOp(BinaryOp binop, ILongValue value1, ILongValue value2)
           
 IValue DefaultExpEvaluator.evaluateBinaryOp(BinaryOp binop, INonPrimitiveValue value1, INonPrimitiveValue value2)
           
 IValue IExpEvaluator.evaluateBinaryOp(BinaryOp binop, INonPrimitiveValue value1, INonPrimitiveValue value2)
           
 IValue DefaultExpEvaluator.evaluateBinaryOp(BinaryOp binop, IPrimitiveExtValue value1, IPrimitiveExtValue value2)
           
 IValue IExpEvaluator.evaluateBinaryOp(BinaryOp binop, IPrimitiveExtValue value1, IPrimitiveExtValue value2)
           
 IValue DefaultExpEvaluator.evaluateBinaryOp(BinaryOp binop, IValue value1, IValue value2)
           
 IValue IExpEvaluator.evaluateBinaryOp(BinaryOp binop, IValue value1, IValue value2)