Uses of Class
org.antlr.v4.runtime.Recognizer
-
Packages that use Recognizer Package Description org.antlr.v4.runtime org.antlr.v4.runtime.atn org.antlr.v4.runtime.tree.xpath -
-
Uses of Recognizer in org.antlr.v4.runtime
Subclasses of Recognizer in org.antlr.v4.runtime Modifier and Type Class Description classLexerA lexer is recognizer that draws input symbols from a character stream.classLexerInterpreterclassParserThis is all the parsing support code essentially; most of it is error recovery stuff.classParserInterpreterA parser simulator that mimics what ANTLR's generated parser code does.Methods in org.antlr.v4.runtime that return Recognizer Modifier and Type Method Description Recognizer<?,?>RecognitionException. getRecognizer()Gets theRecognizerwhere this exception occurred.Methods in org.antlr.v4.runtime with parameters of type Recognizer Modifier and Type Method Description voidANTLRErrorListener. syntaxError(Recognizer<?,?> recognizer, Object offendingSymbol, int line, int charPositionInLine, String msg, RecognitionException e)Upon syntax error, notify any interested parties.voidBaseErrorListener. syntaxError(Recognizer<?,?> recognizer, Object offendingSymbol, int line, int charPositionInLine, String msg, RecognitionException e)voidConsoleErrorListener. syntaxError(Recognizer<?,?> recognizer, Object offendingSymbol, int line, int charPositionInLine, String msg, RecognitionException e)Upon syntax error, notify any interested parties.voidProxyErrorListener. syntaxError(Recognizer<?,?> recognizer, Object offendingSymbol, int line, int charPositionInLine, String msg, RecognitionException e)StringCommonToken. toString(Recognizer<?,?> r)StringRuleContext. toString(Recognizer<?,?> recog)StringRuleContext. toString(Recognizer<?,?> recog, RuleContext stop)Constructors in org.antlr.v4.runtime with parameters of type Recognizer Constructor Description RecognitionException(String message, Recognizer<?,?> recognizer, IntStream input, ParserRuleContext ctx)RecognitionException(Recognizer<?,?> recognizer, IntStream input, ParserRuleContext ctx) -
Uses of Recognizer in org.antlr.v4.runtime.atn
Methods in org.antlr.v4.runtime.atn with parameters of type Recognizer Modifier and Type Method Description booleanSemanticContext.AND. eval(Recognizer<?,?> parser, RuleContext parserCallStack)For context independent predicates, we evaluate them without a local context (i.e., null context).booleanSemanticContext.Empty. eval(Recognizer<?,?> parser, RuleContext parserCallStack)abstract booleanSemanticContext. eval(Recognizer<?,?> parser, RuleContext parserCallStack)For context independent predicates, we evaluate them without a local context (i.e., null context).booleanSemanticContext.OR. eval(Recognizer<?,?> parser, RuleContext parserCallStack)For context independent predicates, we evaluate them without a local context (i.e., null context).booleanSemanticContext.PrecedencePredicate. eval(Recognizer<?,?> parser, RuleContext parserCallStack)booleanSemanticContext.Predicate. eval(Recognizer<?,?> parser, RuleContext parserCallStack)SemanticContextSemanticContext.AND. evalPrecedence(Recognizer<?,?> parser, RuleContext parserCallStack)SemanticContextSemanticContext. evalPrecedence(Recognizer<?,?> parser, RuleContext parserCallStack)Evaluate the precedence predicates for the context and reduce the result.SemanticContextSemanticContext.OR. evalPrecedence(Recognizer<?,?> parser, RuleContext parserCallStack)SemanticContextSemanticContext.PrecedencePredicate. evalPrecedence(Recognizer<?,?> parser, RuleContext parserCallStack)StringATNConfig. toString(Recognizer<?,?> recog, boolean showAlt)StringPredictionContext. toString(Recognizer<?,?> recog)String[]PredictionContext. toStrings(Recognizer<?,?> recognizer, int currentState)String[]PredictionContext. toStrings(Recognizer<?,?> recognizer, PredictionContext stop, int currentState) -
Uses of Recognizer in org.antlr.v4.runtime.tree.xpath
Subclasses of Recognizer in org.antlr.v4.runtime.tree.xpath Modifier and Type Class Description classXPathLexerMimic the old XPathLexer from .g4 fileMethods in org.antlr.v4.runtime.tree.xpath with parameters of type Recognizer Modifier and Type Method Description voidXPathLexerErrorListener. syntaxError(Recognizer<?,?> recognizer, Object offendingSymbol, int line, int charPositionInLine, String msg, RecognitionException e)
-