SepBy<I, O> constructor

SepBy<I, O>(
  1. Parser<I, O> p,
  2. Parser sep
)

Implementation

SepBy(this.p, this.sep) : _p = SepBy1(p, sep) {
  label = 'sepBy${[p, sep].map(Parser.quote).join(' ')})';
}