Example #1
0
 public StatementList(Parser yyp, StatementList sl, Statement s) : base((yyp))
 {
     while (0 < sl.kids.Count) kids.Add(sl.kids.Pop());
     AddStatement(s);
 }
Example #2
0
 public CompoundStatement(Parser yyp, StatementList sl) : base((yyp))
 {
     while (0 < sl.kids.Count) kids.Add(sl.kids.Pop());
 }