Example #1
0
File: IR.cs Project: nokok/lury
 public IfStatement(Node condition, Routine suite)
 {
     this.condition = condition;
     this.suite = suite;
     this.nextIf = null;
 }
Example #2
0
File: IR.cs Project: nokok/lury
 public IfStatement(Routine elseSuite)
 {
     this.condition = null;
     this.suite = elseSuite;
     this.nextIf = null;
 }