Uses of Class
org.antlr.analysis.NFAConfiguration
-
Packages that use NFAConfiguration Package Description org.antlr.analysis -
-
Uses of NFAConfiguration in org.antlr.analysis
Fields in org.antlr.analysis declared as NFAConfiguration Modifier and Type Field Description NFAConfiguration
AnalysisRecursionOverflowException. proposedNFAConfiguration
Fields in org.antlr.analysis with type parameters of type NFAConfiguration Modifier and Type Field Description protected Set<NFAConfiguration>
DFAState. closureBusy
Used to prevent the closure operation from looping to itself and hence looping forever.List<NFAConfiguration>
DFAState. configurationsWithLabeledEdges
OrderedHashSet<NFAConfiguration>
DFAState. nfaConfigurations
The set of NFA configurations (state,alt,context) for this DFA stateprotected MultiMap<Integer,NFAConfiguration>
DecisionProbe. stateToRecursionOverflowConfigurationsMap
Recursion is limited to a particular depth.Methods in org.antlr.analysis that return NFAConfiguration Modifier and Type Method Description NFAConfiguration
DFAState. addNFAConfiguration(NFAState state, int alt, NFAContext context, SemanticContext semanticContext)
Methods in org.antlr.analysis with parameters of type NFAConfiguration Modifier and Type Method Description void
DFAState. addNFAConfiguration(NFAState state, NFAConfiguration c)
Add an NFA configuration to this DFA node.static boolean
NFAToDFAConverter. closureIsBusy(DFAState d, NFAConfiguration proposedNFAConfiguration)
A closure operation should abort if that computation has already been done or a computation with a conflicting context has already been done.void
DecisionProbe. reportRecursionOverflow(DFAState d, NFAConfiguration recursionNFAConfiguration)
Method parameters in org.antlr.analysis with type arguments of type NFAConfiguration Modifier and Type Method Description void
DFAState. setNFAConfigurations(OrderedHashSet<NFAConfiguration> configs)
Constructors in org.antlr.analysis with parameters of type NFAConfiguration Constructor Description AnalysisRecursionOverflowException(DFAState ovfState, NFAConfiguration proposedNFAConfiguration)
-