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