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