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