Ejemplo n.º 1
0
 public override Parser Clone(ParserCloneArgs args)
 {
     return(new UnaryParser(this, args));
 }
Ejemplo n.º 2
0
 protected UnaryParser(UnaryParser other, ParserCloneArgs args)
     : base(other, args)
 {
     Inner = args.Clone(other.Inner);
 }