Package org.antlr.v4.runtime
Interface ANTLRErrorStrategy
- 
- All Known Implementing Classes:
- BailErrorStrategy,- DefaultErrorStrategy
 
 public interface ANTLRErrorStrategyThe interface for defining strategies to deal with syntax errors encountered during a parse by ANTLR-generated parsers. We distinguish between three different kinds of errors:- The parser could not figure out which path to take in the ATN (none of the available alternatives could possibly match)
- The current input does not match what we were looking for
- A predicate evaluated to false
 Parser.notifyErrorListeners(java.lang.String).TODO: what to do about lexers 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleaninErrorRecoveryMode(Parser recognizer)Tests whether or notrecognizeris in the process of recovering from an error.voidrecover(Parser recognizer, RecognitionException e)This method is called to recover from exceptione.TokenrecoverInline(Parser recognizer)This method is called when an unexpected symbol is encountered during an inline match operation, such asParser.match(int).voidreportError(Parser recognizer, RecognitionException e)Report any kind ofRecognitionException.voidreportMatch(Parser recognizer)This method is called by when the parser successfully matches an input symbol.voidreset(Parser recognizer)Reset the error handler state for the specifiedrecognizer.voidsync(Parser recognizer)This method provides the error handler with an opportunity to handle syntactic or semantic errors in the input stream before they result in aRecognitionException.
 
- 
- 
- 
Method Detail- 
resetvoid reset(Parser recognizer) Reset the error handler state for the specifiedrecognizer.- Parameters:
- recognizer- the parser instance
 
 - 
recoverInlineToken recoverInline(Parser recognizer) throws RecognitionException This method is called when an unexpected symbol is encountered during an inline match operation, such asParser.match(int). If the error strategy successfully recovers from the match failure, this method returns theTokeninstance which should be treated as the successful result of the match.This method handles the consumption of any tokens - the caller should not call Parser.consume()after a successful recovery.Note that the calling code will not report an error if this method returns successfully. The error strategy implementation is responsible for calling Parser.notifyErrorListeners(java.lang.String)as appropriate.- Parameters:
- recognizer- the parser instance
- Throws:
- RecognitionException- if the error strategy was not able to recover from the unexpected input symbol
 
 - 
recovervoid recover(Parser recognizer, RecognitionException e) throws RecognitionException This method is called to recover from exceptione. This method is called afterreportError(org.antlr.v4.runtime.Parser, org.antlr.v4.runtime.RecognitionException)by the default exception handler generated for a rule method.- Parameters:
- recognizer- the parser instance
- e- the recognition exception to recover from
- Throws:
- RecognitionException- if the error strategy could not recover from the recognition exception
- See Also:
- reportError(org.antlr.v4.runtime.Parser, org.antlr.v4.runtime.RecognitionException)
 
 - 
syncvoid sync(Parser recognizer) throws RecognitionException This method provides the error handler with an opportunity to handle syntactic or semantic errors in the input stream before they result in aRecognitionException.The generated code currently contains calls to sync(org.antlr.v4.runtime.Parser)after entering the decision state of a closure block ((...)*or(...)+).For an implementation based on Jim Idle's "magic sync" mechanism, see DefaultErrorStrategy.sync(org.antlr.v4.runtime.Parser).- Parameters:
- recognizer- the parser instance
- Throws:
- RecognitionException- if an error is detected by the error strategy but cannot be automatically recovered at the current state in the parsing process
- See Also:
- DefaultErrorStrategy.sync(org.antlr.v4.runtime.Parser)
 
 - 
inErrorRecoveryModeboolean inErrorRecoveryMode(Parser recognizer) Tests whether or notrecognizeris in the process of recovering from an error. In error recovery mode,Parser.consume()adds symbols to the parse tree by callingParser.createErrorNode(ParserRuleContext, Token)thenParserRuleContext.addErrorNode(ErrorNode)instead ofParser.createTerminalNode(ParserRuleContext, Token).- Parameters:
- recognizer- the parser instance
- Returns:
- trueif the parser is currently recovering from a parse error, otherwise- false
 
 - 
reportMatchvoid reportMatch(Parser recognizer) This method is called by when the parser successfully matches an input symbol.- Parameters:
- recognizer- the parser instance
 
 - 
reportErrorvoid reportError(Parser recognizer, RecognitionException e) Report any kind ofRecognitionException. This method is called by the default exception handler generated for a rule method.- Parameters:
- recognizer- the parser instance
- e- the recognition exception to report
 
 
- 
 
-