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

ErrorInfo() public method

Constructs a new instance of the ErrorInfo class with the specified detailed syntax error information.
public ErrorInfo ( int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex ) : Antlr4.Runtime
decision int The decision number
state SimulatorState /// The final simulator state reached during prediction /// prior to reaching the /// /// state ///
input ITokenStream The input token stream
startIndex int The start index for the current prediction
stopIndex int The index at which the syntax error was identified
return Antlr4.Runtime
        public ErrorInfo(int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex)
            : base(decision, state, input, startIndex, stopIndex, state.useContext)
        {
        }
ErrorInfo