示例#1
0
 public CCodeWhileStatement(CCodeExpression cond, CCodeStatement stmt = null)
 {
     condition = cond;
     body      = stmt;
 }
示例#2
0
 public CCodeIfStatement(CCodeExpression cond, CCodeStatement true_stmt, CCodeStatement false_stmt = null)
 {
     condition       = cond;
     true_statement  = true_stmt;
     false_statement = false_stmt;
 }
示例#3
0
 public CCodeForStatement(CCodeExpression condition, CCodeStatement body = null)
 {
     this.condition = condition;
     this.body      = body;
 }