ErrorInfo constructor

ErrorInfo(
  1. int decision,
  2. ATNConfigSet? configs,
  3. TokenStream input,
  4. int startIndex,
  5. int stopIndex,
  6. bool fullCtx,
)

Constructs a new instance of the ErrorInfo class with the specified detailed syntax error information.

@param decision The decision number @param configs The final configuration set reached during prediction prior to reaching the {@link ATNSimulator#ERROR} state @param input The input token stream @param startIndex The start index for the current prediction @param stopIndex The index at which the syntax error was identified @param fullCtx true if the syntax error was identified during LL prediction; otherwise, false if the syntax error was identified during SLL prediction

Implementation

ErrorInfo(
  int decision,
  ATNConfigSet? configs,
  TokenStream input,
  int startIndex,
  int stopIndex,
  bool fullCtx,
) : super(decision, configs, input, startIndex, stopIndex, fullCtx);