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 int
ParserInterpreter. 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 class
BasicBlockStartState
class
BlockStartState
The start of a regular(...)
block.class
PlusBlockStartState
Start of(A|B|...)+
loop.class
PlusLoopbackState
Decision state forA+
and(A|B)+
.class
StarBlockStartState
The block that begins a closure loop.class
StarLoopEntryState
class
TokensStartState
The 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. decisionToState
Each 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 DecisionState
ATN. getDecisionState(int decision)
Methods in org.antlr.v4.runtime.atn with parameters of type DecisionState Modifier and Type Method Description int
ATN. defineDecisionState(DecisionState s)
protected void
ParserATNSimulator. 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 DecisionState
DFA. atnStartState
From 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)
-