Antlr4.Runtime.DefaultErrorStrategy.EndErrorCondition C# (CSharp) Method

EndErrorCondition() protected method

This method is called to leave error recovery mode after recovering from a recognition exception.
This method is called to leave error recovery mode after recovering from a recognition exception.
protected EndErrorCondition ( Parser recognizer ) : void
recognizer Parser
return void
        protected internal virtual void EndErrorCondition(Parser recognizer)
        {
            errorRecoveryMode = false;
            lastErrorStates = null;
            lastErrorIndex = -1;
        }