SepBy1<I, O> constructor

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

Implementation

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