SepEndBy<I, O> constructor

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

Implementation

SepEndBy(this.p, this.sep) : _p = SepEndBy1(p, sep) {
  label = 'sepEndBy${[p, sep].map(Parser.quote).join(' ')})';
}