예제 #1
0
파일: IR.cs 프로젝트: nokok/lury
 public WhileStatement(Node condition, Routine suite)
 {
     this.condition = condition;
     this.suite = suite;
     this.elseSuite = null;
 }
예제 #2
0
파일: IR.cs 프로젝트: nokok/lury
 public IfStatement(Node condition, Routine suite)
 {
     this.condition = condition;
     this.suite = suite;
     this.nextIf = null;
 }
예제 #3
0
파일: IR.cs 프로젝트: nokok/lury
 public FunctionDefinition(LValueNode name, Routine suite)
     : this(name, null, suite)
 {
 }
예제 #4
0
파일: IR.cs 프로젝트: nokok/lury
 public IfStatement(Routine elseSuite)
 {
     this.condition = null;
     this.suite = elseSuite;
     this.nextIf = null;
 }
예제 #5
0
파일: IR.cs 프로젝트: nokok/lury
 public FunctionDefinition(LValueNode name, List<string> parameters, Routine suite)
 {
     this.name = name;
     this.parameters = parameters;
     this.suite = suite;
 }