Uses of Class
org.antlr.v4.runtime.atn.PredictionContextCache
-
Packages that use PredictionContextCache Package Description org.antlr.v4.runtime org.antlr.v4.runtime.atn -
-
Uses of PredictionContextCache in org.antlr.v4.runtime
Fields in org.antlr.v4.runtime declared as PredictionContextCache Modifier and Type Field Description protected PredictionContextCache
LexerInterpreter. _sharedContextCache
protected PredictionContextCache
ParserInterpreter. sharedContextCache
-
Uses of PredictionContextCache in org.antlr.v4.runtime.atn
Fields in org.antlr.v4.runtime.atn declared as PredictionContextCache Modifier and Type Field Description protected PredictionContextCache
ATNSimulator. sharedContextCache
The context cache maps all PredictionContext objects that are equals() to a single cached copy.Methods in org.antlr.v4.runtime.atn that return PredictionContextCache Modifier and Type Method Description PredictionContextCache
ATNSimulator. getSharedContextCache()
Methods in org.antlr.v4.runtime.atn with parameters of type PredictionContextCache Modifier and Type Method Description static PredictionContext
PredictionContext. getCachedContext(PredictionContext context, PredictionContextCache contextCache, IdentityHashMap<PredictionContext,PredictionContext> visited)
Constructors in org.antlr.v4.runtime.atn with parameters of type PredictionContextCache Constructor Description ATNSimulator(ATN atn, PredictionContextCache sharedContextCache)
LexerATNSimulator(ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)
LexerATNSimulator(Lexer recog, ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)
ParserATNSimulator(ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)
Testing only!ParserATNSimulator(Parser parser, ATN atn, DFA[] decisionToDFA, PredictionContextCache sharedContextCache)
-