Uses of Class
pascalinterpreter.Operator

Packages that use Operator
pascalinterpreter   
pascalinterpreter.analysis   
pascalinterpreter.datatypes   
pascalinterpreter.operators   
 

Uses of Operator in pascalinterpreter
 

Subclasses of Operator in pascalinterpreter
 class BinaryOperator
           
 class UnaryOperator
           
 

Methods in pascalinterpreter with parameters of type Operator
abstract  boolean DataType.isPossible(Operator operator)
          Metoda sprawdza, czy możliwe jest wykonanie na zmiennych tego typy, jakiejś operacji.
protected  void Operation.checkType(Variable operand, Operator operator)
          Metoda sprawdza, czy podany operator jest dopuszczalny dla zmiennej podanego typu.
 

Uses of Operator in pascalinterpreter.analysis
 

Methods in pascalinterpreter.analysis that return Operator
private  Operator Compiler.getOperator(java.lang.String name)
           
 

Uses of Operator in pascalinterpreter.datatypes
 

Methods in pascalinterpreter.datatypes with parameters of type Operator
 boolean Bool.isPossible(Operator operator)
           
 boolean Int.isPossible(Operator operator)
           
 boolean PointBool.isPossible(Operator operator)
           
 boolean PointInt.isPossible(Operator operator)
           
 boolean PointReal.isPossible(Operator operator)
           
 boolean PointStr.isPossible(Operator operator)
           
 boolean PointerType.isPossible(Operator operator)
           
 boolean Real.isPossible(Operator operator)
           
 boolean Str.isPossible(Operator operator)
           
 

Uses of Operator in pascalinterpreter.operators
 

Subclasses of Operator in pascalinterpreter.operators
 class Add
          Represents a singleton.
 class Arithmetic
           
 class Assign
          Represents a singleton.
 class AssignRegistry
          Represents a singleton.
 class Dispose
          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 Memory
           
 class Multiple
          Represents a singleton.
 class New
          Represents a singleton.
 class NotEqual
          Represents a singleton.
 class Relational
           
 class Subtract
          Represents a singleton.