Inheritance: Tools.SYMBOL
Esempio n. 1
0
 public StatementList(Parser yyp, StatementList sl, Statement s) : base((yyp))
 {
     while (0 < sl.kids.Count) kids.Add(sl.kids.Pop());
     AddStatement(s);
 }
Esempio n. 2
0
 public CompoundStatement(Parser yyp, StatementList sl) : base((yyp))
 {
     while (0 < sl.kids.Count) kids.Add(sl.kids.Pop());
 }