RightParser<E> constructor

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

Implementation

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