Example #1
0
File: IR.cs Project: nokok/lury
 public WhileStatement(Node condition, Routine suite)
 {
     this.condition = condition;
     this.suite = suite;
     this.elseSuite = null;
 }
Example #2
0
File: IR.cs Project: nokok/lury
 public IfStatement(Node condition, Routine suite)
 {
     this.condition = condition;
     this.suite = suite;
     this.nextIf = null;
 }
Example #3
0
File: IR.cs Project: nokok/lury
 public FunctionDefinition(LValueNode name, Routine suite)
     : this(name, null, suite)
 {
 }
Example #4
0
File: IR.cs Project: nokok/lury
 public IfStatement(Routine elseSuite)
 {
     this.condition = null;
     this.suite = elseSuite;
     this.nextIf = null;
 }
Example #5
0
File: IR.cs Project: nokok/lury
 public FunctionDefinition(LValueNode name, List<string> parameters, Routine suite)
 {
     this.name = name;
     this.parameters = parameters;
     this.suite = suite;
 }