LookaheadEventInfo constructor

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

Constructs a new instance of the LookaheadEventInfo class with the specified detailed lookahead information.

@param decision The decision number @param configs The final configuration set containing the necessary information to determine the result of a prediction, or null if the final configuration set is not available @param input The input token stream @param startIndex The start index for the current prediction @param stopIndex The index at which the prediction was finally made @param fullCtx true if the current lookahead is part of an LL prediction; otherwise, false if the current lookahead is part of an SLL prediction

Implementation

LookaheadEventInfo(
  int decision,
  ATNConfigSet? configs,
  this.predictedAlt,
  TokenStream input,
  int startIndex,
  int stopIndex,
  bool fullCtx,
) : super(decision, configs, input, startIndex, stopIndex, fullCtx);