Uses of Class
pascalinterpreter.Block

Packages that use Block
pascalinterpreter   
pascalinterpreter.analysis   
pascalinterpreter.controlstatements   
 

Uses of Block in pascalinterpreter
 

Fields in pascalinterpreter declared as Block
private  Block ControlStatement.block
           
private  Block Program.mainBlock
           
 

Methods in pascalinterpreter that return Block
 Block ControlStatement.getBlock()
           
 Block Program.getMainBlock()
           
 

Methods in pascalinterpreter with parameters of type Block
protected  void ControlStatement.setBlock(Block block)
           
 void Program.setMainBlock(Block block)
           
 

Uses of Block in pascalinterpreter.analysis
 

Methods in pascalinterpreter.analysis that return Block
private  Block Compiler.createBlock()
           
 

Uses of Block in pascalinterpreter.controlstatements
 

Fields in pascalinterpreter.controlstatements declared as Block
private  Block IfElse.elseBlock
           
 

Methods in pascalinterpreter.controlstatements that return Block
protected  Block IfElse.getElseBlock()
          Metoda odczytuje blok ustawiony jako blok wykonywany przy niespełnionym warunku(...else)
 

Methods in pascalinterpreter.controlstatements with parameters of type Block
protected  void IfElse.setElseBlock(Block block)
          Metoda ustawia podany blok, jako blok wykonywany przy niespełnionym warunku (...else).
 

Constructors in pascalinterpreter.controlstatements with parameters of type Block
For(Variable counter, Variable initValue, Variable maxValue, Block block)
          Konstruktor pętli For.
IfElse(BinaryOperation controlCondition, Block block, Block elseBlock)
          Konstruktor operacji warunkowej if - else.
While(BinaryOperation controlCondition, Block block)