Exemplo n.º 1
0
 public While(List <JsmInstruction> instructions, int from, int to)
 {
     _instructions = instructions;
     _segment      = new WhileSegment(from, to)
     {
         _instructions[from]
     };
 }
Exemplo n.º 2
0
 public Executer(WhileSegment seg)
 {
     _seg = seg;
 }
Exemplo n.º 3
0
 public Executor(WhileSegment seg) => _seg = seg;
Exemplo n.º 4
0
 public While(List <JsmInstruction> instructions, Int32 from, Int32 to)
 {
     _instructions = instructions;
     _segment      = new WhileSegment(from, to);
     _segment.Add(_instructions[from]);
 }