Uses of Interface
org.antlr.v4.runtime.ANTLRErrorStrategy
-
Packages that use ANTLRErrorStrategy Package Description org.antlr.v4.runtime org.antlr.v4.tool -
-
Uses of ANTLRErrorStrategy in org.antlr.v4.runtime
Classes in org.antlr.v4.runtime that implement ANTLRErrorStrategy Modifier and Type Class Description classBailErrorStrategyThis implementation ofANTLRErrorStrategyresponds to syntax errors by immediately canceling the parse operation with aParseCancellationException.classDefaultErrorStrategyThis is the default implementation ofANTLRErrorStrategyused for error reporting and recovery in ANTLR parsers.Fields in org.antlr.v4.runtime declared as ANTLRErrorStrategy Modifier and Type Field Description protected ANTLRErrorStrategyParser. _errHandlerThe error handling strategy for the parser.Methods in org.antlr.v4.runtime that return ANTLRErrorStrategy Modifier and Type Method Description ANTLRErrorStrategyParser. getErrorHandler()Methods in org.antlr.v4.runtime with parameters of type ANTLRErrorStrategy Modifier and Type Method Description voidParser. setErrorHandler(ANTLRErrorStrategy handler) -
Uses of ANTLRErrorStrategy in org.antlr.v4.tool
Classes in org.antlr.v4.tool that implement ANTLRErrorStrategy Modifier and Type Class Description static classGrammarParserInterpreter.BailButConsumeErrorStrategyWe want to stop and track the first error but we cannot bail out likeBailErrorStrategyas consume() constructs trees.
-