Exemple #1
0
 public LSLProgramRoot(Parser yyp, States s) : base((yyp))
 {
     while (0 < s.kids.Count) kids.Add(s.kids.Pop());
 }
Exemple #2
0
 public LSLProgramRoot(Parser yyp, GlobalDefinitions gd, States s) : base((yyp))
 {
     while (0 < gd.kids.Count) kids.Add(gd.kids.Pop());
     while (0 < s.kids.Count) kids.Add(s.kids.Pop());
 }
Exemple #3
0
 public States(Parser yyp, States s, State us) : base((yyp))
 {
     while (0 < s.kids.Count) kids.Add(s.kids.Pop());
     kids.Add(us);
 }