ContextSensitivityInfo constructor

ContextSensitivityInfo(
  1. int decision,
  2. ATNConfigSet configs,
  3. TokenStream input,
  4. int startIndex,
  5. int stopIndex,
)

Constructs a new instance of the ContextSensitivityInfo class with the specified detailed context sensitivity information.

@param decision The decision number @param configs The final configuration set containing the unique alternative identified by full-context prediction @param input The input token stream @param startIndex The start index for the current prediction @param stopIndex The index at which the context sensitivity was identified during full-context prediction

Implementation

ContextSensitivityInfo(int decision, ATNConfigSet configs, TokenStream input,
    int startIndex, int stopIndex)
    : super(decision, configs, input, startIndex, stopIndex, true);