Uses of Class
org.antlr.analysis.LookaheadSet
-
Packages that use LookaheadSet Package Description org.antlr.analysis org.antlr.tool -
-
Uses of LookaheadSet in org.antlr.analysis
Fields in org.antlr.analysis with type parameters of type LookaheadSet Modifier and Type Field Description java.util.Map<NFAState,LookaheadSet>LL1Analyzer. FIRSTCachejava.util.Map<Rule,LookaheadSet>LL1Analyzer. FOLLOWCacheMethods in org.antlr.analysis that return LookaheadSet Modifier and Type Method Description protected LookaheadSetLL1Analyzer. _FIRST(NFAState s, boolean chaseFollowTransitions)LookaheadSetLL1Analyzer. FIRST(NFAState s)From an NFA state, s, find the set of all labels reachable from s.LookaheadSetLL1Analyzer. FOLLOW(Rule r)LookaheadSetLookaheadSet. intersection(LookaheadSet s)LookaheadSetLL1Analyzer. LOOK(NFAState s)LookaheadSetLookaheadSet. or(LookaheadSet other)LookaheadSetLookaheadSet. subtract(LookaheadSet other)Methods in org.antlr.analysis with parameters of type LookaheadSet Modifier and Type Method Description LookaheadSetLookaheadSet. intersection(LookaheadSet s)LookaheadSetLookaheadSet. or(LookaheadSet other)voidLookaheadSet. orInPlace(LookaheadSet other)LookaheadSetLookaheadSet. subtract(LookaheadSet other)Constructors in org.antlr.analysis with parameters of type LookaheadSet Constructor Description LL1DFA(int decisionNumber, NFAState decisionStartState, LookaheadSet[] altLook)From list of lookahead sets (one per alt in decision), create an LL(1) DFA.LookaheadSet(LookaheadSet other) -
Uses of LookaheadSet in org.antlr.tool
Methods in org.antlr.tool that return LookaheadSet Modifier and Type Method Description LookaheadSetGrammar. FIRST(NFAState s)LookaheadSetGrammar. LOOK(NFAState s)
-