Uses of Class
org.antlr.v4.runtime.atn.DecisionState
-
Packages that use DecisionState Package Description org.antlr.v4.runtime org.antlr.v4.runtime.atn org.antlr.v4.runtime.dfa -
-
Uses of DecisionState in org.antlr.v4.runtime
Methods in org.antlr.v4.runtime with parameters of type DecisionState Modifier and Type Method Description protected intParserInterpreter. visitDecisionState(DecisionState p)Method visitDecisionState() is called when the interpreter reaches a decision state (instance of DecisionState). -
Uses of DecisionState in org.antlr.v4.runtime.atn
Subclasses of DecisionState in org.antlr.v4.runtime.atn Modifier and Type Class Description classBasicBlockStartStateclassBlockStartStateThe start of a regular(...)block.classPlusBlockStartStateStart of(A|B|...)+loop.classPlusLoopbackStateDecision state forA+and(A|B)+.classStarBlockStartStateThe block that begins a closure loop.classStarLoopEntryStateclassTokensStartStateThe Tokens rule start state linking to each lexer rule start stateFields in org.antlr.v4.runtime.atn with type parameters of type DecisionState Modifier and Type Field Description List<DecisionState>ATN. decisionToStateEach subrule/rule is a decision point and we must track them so we can go back later and build DFA predictors for them.Methods in org.antlr.v4.runtime.atn that return DecisionState Modifier and Type Method Description DecisionStateATN. getDecisionState(int decision)Methods in org.antlr.v4.runtime.atn with parameters of type DecisionState Modifier and Type Method Description intATN. defineDecisionState(DecisionState s)protected voidParserATNSimulator. predicateDFAState(DFAState dfaState, DecisionState decisionState) -
Uses of DecisionState in org.antlr.v4.runtime.dfa
Fields in org.antlr.v4.runtime.dfa declared as DecisionState Modifier and Type Field Description DecisionStateDFA. atnStartStateFrom which ATN state did we create this DFA?Constructors in org.antlr.v4.runtime.dfa with parameters of type DecisionState Constructor Description DFA(DecisionState atnStartState)DFA(DecisionState atnStartState, int decision)
-