Choice2Parser<E> constructor

Choice2Parser<E>(
  1. Parser<E> p1,
  2. Parser<E> p2
)

Implementation

Choice2Parser(this.p1, this.p2) {
  label = [p1, p2].map(_quote).join(' | ');
}