Uses of Class
org.antlr.v4.runtime.atn.ATN
-
-
Uses of ATN in org.antlr.v4.analysis
Fields in org.antlr.v4.analysis declared as ATN Modifier and Type Field Description ATN
LeftRecursionDetector. atn
Constructors in org.antlr.v4.analysis with parameters of type ATN Constructor Description LeftRecursionDetector(Grammar g, ATN atn)
-
Uses of ATN in org.antlr.v4.automata
Fields in org.antlr.v4.automata declared as ATN Modifier and Type Field Description private ATN
TailEpsilonRemover. _atn
ATN
ParserATNFactory. atn
Methods in org.antlr.v4.automata that return ATN Modifier and Type Method Description ATN
ATNFactory. createATN()
ATN
LexerATNFactory. createATN()
ATN
ParserATNFactory. createATN()
Methods in org.antlr.v4.automata with parameters of type ATN Modifier and Type Method Description static void
ATNOptimizer. optimize(Grammar g, ATN atn)
private static void
ATNOptimizer. optimizeSets(Grammar g, ATN atn)
private static void
ATNOptimizer. optimizeStates(ATN atn)
Constructors in org.antlr.v4.automata with parameters of type ATN Constructor Description TailEpsilonRemover(ATN atn)
-
Uses of ATN in org.antlr.v4.codegen.model
Constructors in org.antlr.v4.codegen.model with parameters of type ATN Constructor Description SerializedATN(OutputModelFactory factory, ATN atn)
SerializedJavaATN(OutputModelFactory factory, ATN atn)
-
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
private ATN
Parser. bypassAltsAtnCache
This field holds the deserializedATN
with bypass alternatives, created lazily upon first demand.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(java.lang.String grammarFileName, java.util.Collection<java.lang.String> tokenNames, java.util.Collection<java.lang.String> ruleNames, java.util.Collection<java.lang.String> modeNames, ATN atn, CharStream input)
Deprecated.LexerInterpreter(java.lang.String grammarFileName, Vocabulary vocabulary, java.util.Collection<java.lang.String> ruleNames, java.util.Collection<java.lang.String> channelNames, java.util.Collection<java.lang.String> modeNames, ATN atn, CharStream input)
LexerInterpreter(java.lang.String grammarFileName, Vocabulary vocabulary, java.util.Collection<java.lang.String> ruleNames, java.util.Collection<java.lang.String> modeNames, ATN atn, CharStream input)
Deprecated.ParserInterpreter(java.lang.String grammarFileName, java.util.Collection<java.lang.String> tokenNames, java.util.Collection<java.lang.String> ruleNames, ATN atn, TokenStream input)
Deprecated.ParserInterpreter(java.lang.String grammarFileName, Vocabulary vocabulary, java.util.Collection<java.lang.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, java.util.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.misc
Fields in org.antlr.v4.runtime.misc declared as ATN Modifier and Type Field Description (package private) ATN
InterpreterDataReader.InterpreterData. atn
-
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()
-
Uses of ATN in org.antlr.v4.tool
Fields in org.antlr.v4.tool declared as ATN Modifier and Type Field Description ATN
Grammar. atn
The ATN that represents the grammar with edges labelled with tokens or epsilon.Methods in org.antlr.v4.tool that return ATN Modifier and Type Method Description ATN
Grammar. getATN()
Constructors in org.antlr.v4.tool with parameters of type ATN Constructor Description GrammarParserInterpreter(Grammar g, java.lang.String grammarFileName, Vocabulary vocabulary, java.util.Collection<java.lang.String> ruleNames, ATN atn, TokenStream input)
GrammarParserInterpreter(Grammar g, ATN atn, TokenStream input)
-