Choice7Parser<E> constructor

Choice7Parser<E>(
  1. Parser<E> p1,
  2. Parser<E> p2,
  3. Parser<E> p3,
  4. Parser<E> p4,
  5. Parser<E> p5,
  6. Parser<E> p6,
  7. Parser<E> p7,
)

Implementation

Choice7Parser(this.p1, this.p2, this.p3, this.p4, this.p5, this.p6, this.p7) {
  label = [p1, p2, p3, p4, p5, p6, p7].map(_quote).join(' | ');
}