AmbiguityInfo constructor

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

Constructs a new instance of the AmbiguityInfo class with the specified detailed ambiguity information.

@param decision The decision number @param configs The final configuration set identifying the ambiguous alternatives for the current input @param ambigAlts The set of alternatives in the decision that lead to a valid parse. The predicted alt is the min(ambigAlts) @param input The input token stream @param startIndex The start index for the current prediction @param stopIndex The index at which the ambiguity was identified during prediction @param fullCtx true if the ambiguity was identified during LL prediction; otherwise, false if the ambiguity was identified during SLL prediction

Implementation

AmbiguityInfo(int decision, ATNConfigSet configs, this.ambigAlts,
    TokenStream input, int startIndex, int stopIndex, bool fullCtx)
    : super(decision, configs, input, startIndex, stopIndex, fullCtx);