AroundParser<E1, E2> constructor

AroundParser<E1, E2>(
  1. Parser<E1> p1,
  2. Parser p2,
  3. Parser<E2> p3
)

Implementation

AroundParser(this.p1, this.p2, this.p3) {
  label = 'around(' + [p1, p2, p3].map(_quote).join(' ') + ')';
  quote = false;
}