Choice<I, O> constructor

Choice<I, O>(
  1. List<Parser<I, O>> ps
)

Implementation

Choice(this.ps) {
  label = '(${ps.map(Parser.quote).join(' | ')})';
}