Example #1
0
 protected ListParser(ListParser other, ParserCloneArgs chain)
     : base(other, chain)
 {
     Items = new List <Parser>(other.Items.Select(chain.Clone));
 }
Example #2
0
		protected ListParser(ListParser other, ParserCloneArgs chain)
			: base(other, chain)
		{
			Items = new List<Parser>(other.Items.Select(chain.Clone));
		}