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