RecoveryParser constructor

RecoveryParser(
  1. BacktrackingParser parser,
  2. IntSegmentedTuple action,
  3. IntTuple tokens,
  4. IPrsStream tokStream,
  5. ParseTable prs, [
  6. int maxErrors = 0,
  7. int maxTime = 0,
  8. Monitor? monitor,
])

Implementation

RecoveryParser(BacktrackingParser parser, IntSegmentedTuple action,
    IntTuple tokens, IPrsStream tokStream, ParseTable prs,
    [int maxErrors = 0, int maxTime = 0, Monitor? monitor])
    : super(tokStream, prs, maxErrors, maxTime, monitor) {
  this.parser = parser;
  this.action = action;
  this.tokens = tokens;
}