Ejemplo n.º 1
0
 public StmtRepeat(StmtRepeatRaw raw, Stmt parentStmt)
 {
     Raw        = raw;
     ParentStmt = parentStmt;
     RepeatBody = new StmtBlock(this, raw.RepeatBody);
 }
Ejemplo n.º 2
0
 public StmtBlock(Stmt parentStmt, StmtBlockRaw raw)
 {
     ParentStmt = parentStmt;
     Raw        = raw;
     Stmts      = new List <Stmt>();
 }
Ejemplo n.º 3
0
 public StmtIf(StmtIfRaw raw, Stmt parentStmt)
 {
     Raw        = raw;
     ParentStmt = parentStmt;
 }