Beispiel #1
0
 public If(List <JsmInstruction> instructions, int from, int to)
 {
     _instructions = instructions;
     IfRange       = new IfSegment(from, to, this)
     {
         _instructions[from]
     };
 }
 public If(List <JsmInstruction> instructions, Int32 from, Int32 to)
 {
     _instructions = instructions;
     IfRange       = new IfSegment(from, to, this);
     IfRange.Add(_instructions[from]);
 }