Antlr4.Runtime.Atn.AmbiguityInfo.AmbiguityInfo C# (CSharp) Метод

AmbiguityInfo() публичный Метод

Constructs a new instance of the AmbiguityInfo class with the specified detailed ambiguity information.
public AmbiguityInfo ( int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex ) : Antlr4.Runtime
decision int The decision number
state SimulatorState /// The final simulator state identifying the ambiguous /// alternatives for the current input ///
input ITokenStream The input token stream
startIndex int The start index for the current prediction
stopIndex int /// The index at which the ambiguity was identified during /// prediction ///
Результат Antlr4.Runtime
        public AmbiguityInfo(int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex)
            : base(decision, state, input, startIndex, stopIndex, state.useContext)
        {
        }
AmbiguityInfo