Exemple #1
0
 void SetBlock()
 {
     if (start != null && end != null)
     {
         blockSeq = start & new RepeatParser().Until(end, true);
     }
     else
     {
         blockSeq = null;
     }
 }
Exemple #2
0
 protected SequenceParser(SequenceParser other, ParserCloneArgs chain)
     : base(other, chain)
 {
     Separator = chain.Clone(other.Separator);
 }