Uses of Class
org.antlr.v4.runtime.atn.ATN
-
Packages that use ATN Package Description org.antlr.v4.runtime org.antlr.v4.runtime.atn org.antlr.v4.runtime.tree.xpath -
-
Uses of ATN in org.antlr.v4.runtime
Fields in org.antlr.v4.runtime declared as ATN Modifier and Type Field Description protected ATN
LexerInterpreter. atn
protected ATN
ParserInterpreter. atn
Methods in org.antlr.v4.runtime that return ATN Modifier and Type Method Description ATN
LexerInterpreter. getATN()
ATN
ParserInterpreter. getATN()
abstract ATN
Recognizer. getATN()
Get theATN
used by the recognizer for prediction.ATN
Parser. getATNWithBypassAlts()
The ATN with bypass alternatives is expensive to create so we create it lazily.Constructors in org.antlr.v4.runtime with parameters of type ATN Constructor Description LexerInterpreter(String grammarFileName, Collection<String> tokenNames, Collection<String> ruleNames, Collection<String> modeNames, ATN atn, CharStream input)
Deprecated.LexerInterpreter(String grammarFileName, Vocabulary vocabulary, Collection<String> ruleNames, Collection<String> channelNames, Collection<String> modeNames, ATN atn, CharStream input)
LexerInterpreter(String grammarFileName, Vocabulary vocabulary, Collection<String> ruleNames, Collection<String> modeNames, ATN atn, CharStream input)
Deprecated.ParserInterpreter(String grammarFileName, Collection<String> tokenNames, Collection<String> ruleNames, ATN atn, TokenStream input)
Deprecated.ParserInterpreter(String grammarFileName, Vocabulary vocabulary, Collection<String> ruleNames, ATN atn, TokenStream input)
-
Uses of ATN in org.antlr.v4.runtime.atn
Fields in org.antlr.v4.runtime.atn declared as ATN Modifier and Type Field Description ATN
ATNSerializer. atn
ATN
ATNSimulator. atn
ATN
ATNState. atn
Which ATN are we in?ATN
LL1Analyzer. atn
Methods in org.antlr.v4.runtime.atn that return ATN Modifier and Type Method Description ATN
ATNDeserializer. deserialize(char[] data)
ATN
ATNDeserializer. deserialize(int[] data)
Methods in org.antlr.v4.runtime.atn with parameters of type ATN Modifier and Type Method Description protected Transition
ATNDeserializer. edgeFactory(ATN atn, int type, int src, int trg, int arg1, int arg2, int arg3, List<IntervalSet> sets)
static PredictionContext
PredictionContext. fromRuleContext(ATN atn, RuleContext outerContext)
Convert aRuleContext
tree to aPredictionContext
graph.static IntegerList
ATNSerializer. getSerialized(ATN atn)
protected void
ATNDeserializer. markPrecedenceDecisions(ATN atn)
Analyze theStarLoopEntryState
states in the specified ATN to set theStarLoopEntryState.isPrecedenceDecision
field to the correct value.protected void
ATNDeserializer. verifyATN(ATN atn)
Constructors in org.antlr.v4.runtime.atn with parameters of type ATN Constructor Description ATNSerializer(ATN atn)
ATNSimulator(ATN atn, PredictionContextCache sharedContextCache)
LexerATNSimulator(ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)
LexerATNSimulator(Lexer recog, ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)
LL1Analyzer(ATN atn)
ParserATNSimulator(ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)
Testing only!ParserATNSimulator(Parser parser, ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)
-
Uses of ATN in org.antlr.v4.runtime.tree.xpath
Methods in org.antlr.v4.runtime.tree.xpath that return ATN Modifier and Type Method Description ATN
XPathLexer. getATN()
-