Uses of Class
jelan.elan.instruction.Instruction

Packages that use Instruction
jelan.elan.instruction   
 

Uses of Instruction in jelan.elan.instruction
 

Subclasses of Instruction in jelan.elan.instruction
 class Assignment
          An assignment instruction assigns an expression to a variable, updating the global state to reflect the assignment.
 class Print
          The Print instruction prints an expression.
 class Repeat
          An AST (abstract syntax tree) for a SLogo REPEAT instruction.
 class StrictInstructionList
          A list of instructions that doesn't include a function definition.
 

Methods in jelan.elan.instruction that return types with arguments of type Instruction
 java.util.Iterator<Instruction> StrictInstructionList.iterator()
          Return an iterator for accessing all the instructions.
 

Methods in jelan.elan.instruction with parameters of type Instruction
 void StrictInstructionList.add(Instruction i)
          Add an instruction to this list (FIFO order for execution).