ParserError constructor

ParserError(
  1. String message,
  2. String text,
  3. ParserState state,
  4. ParserSymbol symbol,
  5. int lineNo,
  6. int position,
  7. ParserLocation loc,
  8. List<String> expected,
)

Implementation

ParserError(this.message, this.text, this.state, this.symbol,
    this.lineNo, this.position, this.loc, this.expected);