BetweenParser<E> constructor

BetweenParser<E>(
  1. Parser p1,
  2. Parser<E> p2,
  3. Parser p3
)

Implementation

BetweenParser(this.p1, this.p2, this.p3) {
  label = 'between(' + [p1, p2, p3].map(_quote).join(' ') + ')';
}