Choice3<I, O> constructor

Choice3<I, O>(
  1. Parser<I, O> p1,
  2. Parser<I, O> p2,
  3. Parser<I, O> p3
)

Implementation

Choice3(this.p1, this.p2, this.p3) {
  label = '(${[p1, p2, p3].map(Parser.quote).join(' | ')})';
}