ParseResult<T> constructor

ParseResult<T>(
  1. Trampoline trampoline,
  2. SpanScanner scanner,
  3. Parser<T> parser,
  4. bool successful,
  5. Iterable<SyntaxError> errors, {
  6. FileSpan? span,
  7. T? value,
})

Implementation

ParseResult(
    this.trampoline, this.scanner, this.parser, this.successful, this.errors,
    {this.span, this.value});