Uses of Class
pascalinterpreter.BinaryOperator

Packages that use BinaryOperator
pascalinterpreter   
pascalinterpreter.operators   
 

Uses of BinaryOperator in pascalinterpreter
 

Fields in pascalinterpreter declared as BinaryOperator
private  BinaryOperator BinaryOperation.operator
           
 

Methods in pascalinterpreter that return BinaryOperator
protected  BinaryOperator BinaryOperation.getOperator()
           
 

Methods in pascalinterpreter with parameters of type BinaryOperator
private  void BinaryOperation.checkOperator(Variable operandL, BinaryOperator operator, Variable operandR)
          Metoda sprawdza, czy operator będzie mógł pracować z tego typu zmiennymi.
 

Constructors in pascalinterpreter with parameters of type BinaryOperator
BinaryOperation(Variable operandL, BinaryOperator operator, Variable operandR)
           
 

Uses of BinaryOperator in pascalinterpreter.operators
 

Subclasses of BinaryOperator in pascalinterpreter.operators
 class Add
          Represents a singleton.
 class Arithmetic
           
 class Assign
          Represents a singleton.
 class Divide
          Represents a singleton.
 class Equal
          Represents a singleton.
 class Greater
          Represents a singleton.
 class GreaterEqual
          Represents a singleton.
 class Less
          Represents a singleton.
 class LessEqual
          Represents a singleton.
 class Multiple
          Represents a singleton.
 class NotEqual
          Represents a singleton.
 class Relational
           
 class Subtract
          Represents a singleton.