Example #1
0
 public ArgumentList(Parser yyp, ArgumentList al, Argument a)
     : base(((LSLSyntax
         )yyp))
 {
     while (0 < al.kids.Count) kids.Add(al.kids.Pop());
     AddArgument(a);
 }
Example #2
0
 private void AddArgument(Argument a)
 {
     if (a is ExpressionArgument) while (0 < a.kids.Count) kids.Add(a.kids.Pop());
     else kids.Add(a);
 }
Example #3
0
 public ArgumentList(Parser yyp, Argument a)
     : base(((LSLSyntax
         )yyp))
 {
     AddArgument(a);
 }