Ejemplo n.º 1
0
 public FunctionCall(Parser yyp, string id, ArgumentList al)
     : base(((LSLSyntax
         )yyp))
 {
     m_id = id;
     kids.Add(al);
 }
Ejemplo n.º 2
0
 public ListConstant(Parser yyp, ArgumentList al)
     : base(((LSLSyntax
         )yyp), "list", null)
 {
     kids.Add(al);
 }
Ejemplo n.º 3
0
 public ArgumentList(Parser yyp, ArgumentList al, Argument a)
     : base(((LSLSyntax
         )yyp))
 {
     while (0 < al.kids.Count) kids.Add(al.kids.Pop());
     AddArgument(a);
 }