Uses of Class
org.antlr.v4.runtime.Recognizer
Packages that use Recognizer
Package
Description
-
Uses of Recognizer in org.antlr.v4.runtime
Subclasses of Recognizer in org.antlr.v4.runtimeModifier and TypeClassDescriptionclassA lexer is recognizer that draws input symbols from a character stream.classclassThis is all the parsing support code essentially; most of it is error recovery stuff.classA parser simulator that mimics what ANTLR's generated parser code does.Fields in org.antlr.v4.runtime declared as RecognizerModifier and TypeFieldDescriptionprivate final Recognizer<?, ?> RecognitionException.recognizerTheRecognizerwhere this exception originated.Methods in org.antlr.v4.runtime that return RecognizerModifier and TypeMethodDescriptionRecognizer<?, ?> RecognitionException.getRecognizer()Gets theRecognizerwhere this exception occurred.Methods in org.antlr.v4.runtime with parameters of type RecognizerModifier and TypeMethodDescriptionvoidANTLRErrorListener.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) CommonToken.toString(Recognizer<?, ?> r) final StringRuleContext.toString(Recognizer<?, ?> recog) RuleContext.toString(Recognizer<?, ?> recog, RuleContext stop) Constructors in org.antlr.v4.runtime with parameters of type RecognizerModifierConstructorDescriptionRecognitionException(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 RecognizerModifier and TypeMethodDescriptionbooleanSemanticContext.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) SemanticContext.AND.evalPrecedence(Recognizer<?, ?> parser, RuleContext parserCallStack) SemanticContext.evalPrecedence(Recognizer<?, ?> parser, RuleContext parserCallStack) Evaluate the precedence predicates for the context and reduce the result.SemanticContext.OR.evalPrecedence(Recognizer<?, ?> parser, RuleContext parserCallStack) SemanticContext.PrecedencePredicate.evalPrecedence(Recognizer<?, ?> parser, RuleContext parserCallStack) ATNConfig.toString(Recognizer<?, ?> recog, boolean showAlt) PredictionContext.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.xpathMethods in org.antlr.v4.runtime.tree.xpath with parameters of type RecognizerModifier and TypeMethodDescriptionvoidXPathLexerErrorListener.syntaxError(Recognizer<?, ?> recognizer, Object offendingSymbol, int line, int charPositionInLine, String msg, RecognitionException e) -
Uses of Recognizer in org.antlr.v4.tool
Subclasses of Recognizer in org.antlr.v4.toolModifier and TypeClassDescriptionclassA heavier weightParserInterpreterthat creates parse trees that track alternative numbers for subtree roots.