OptParser<E> constructor

OptParser<E>(
  1. Parser<E> p
)

Implementation

OptParser(this.p) {
  label = _quote(p) + '?';
  quote = false;
}