LeftParser<E> constructor

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

Implementation

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