Uses of Class
org.antlr.analysis.DecisionProbe
Packages that use DecisionProbe
-
Uses of DecisionProbe in org.antlr.analysis
Fields in org.antlr.analysis declared as DecisionProbeModifier and TypeFieldDescriptionDFA.probe
This probe tells you a lot about a decision and is useful even when there is no error such as when a syntactic nondeterminism is solved via semantic predicates. -
Uses of DecisionProbe in org.antlr.tool
Fields in org.antlr.tool declared as DecisionProbeModifier and TypeFieldDescriptionGrammarAnalysisAbortedMessage.probe
GrammarDanglingStateMessage.probe
GrammarInsufficientPredicatesMessage.probe
GrammarNonDeterminismMessage.probe
GrammarUnreachableAltsMessage.probe
NonRegularDecisionMessage.probe
RecursionOverflowMessage.probe
Methods in org.antlr.tool with parameters of type DecisionProbeModifier and TypeMethodDescriptionstatic void
ErrorManager.analysisAborted
(DecisionProbe probe) static void
ErrorManager.danglingState
(DecisionProbe probe, DFAState d) static void
ErrorManager.insufficientPredicates
(DecisionProbe probe, DFAState d, Map<Integer, Set<antlr.Token>> altToUncoveredLocations) static void
ErrorManager.nondeterminism
(DecisionProbe probe, DFAState d) static void
ErrorManager.nonLLStarDecision
(DecisionProbe probe) static void
ErrorManager.recursionOverflow
(DecisionProbe probe, DFAState sampleBadState, int alt, Collection targetRules, Collection callSiteStates) static void
ErrorManager.unreachableAlts
(DecisionProbe probe, List alts) Constructors in org.antlr.tool with parameters of type DecisionProbeModifierConstructorDescriptionGrammarDanglingStateMessage
(DecisionProbe probe, DFAState problemState) GrammarInsufficientPredicatesMessage
(DecisionProbe probe, DFAState problemState, Map<Integer, Set<antlr.Token>> altToLocations) GrammarNonDeterminismMessage
(DecisionProbe probe, DFAState problemState) GrammarUnreachableAltsMessage
(DecisionProbe probe, List alts) NonRegularDecisionMessage
(DecisionProbe probe, Set<Integer> altsWithRecursion) RecursionOverflowMessage
(DecisionProbe probe, DFAState sampleBadState, int alt, Collection targetRules, Collection callSiteStates)