Antlr4.Runtime.Atn.ContextSensitivityInfo.ContextSensitivityInfo C# (CSharp) Method

ContextSensitivityInfo() public method

Constructs a new instance of the ContextSensitivityInfo class with the specified detailed context sensitivity information.
public ContextSensitivityInfo ( int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex ) : Antlr4.Runtime
decision int The decision number
state SimulatorState /// The final simulator state containing the unique /// alternative identified by full-context prediction ///
input ITokenStream The input token stream
startIndex int The start index for the current prediction
stopIndex int /// The index at which the context sensitivity was /// identified during full-context prediction ///
return Antlr4.Runtime
        public ContextSensitivityInfo(int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex)
            : base(decision, state, input, startIndex, stopIndex, true)
        {
        }
ContextSensitivityInfo