Home
last modified time | relevance | path

Searched refs:lookaheadDFA (Results 1 – 2 of 2) sorted by relevance

/external/antlr/tool/src/main/java/org/antlr/tool/
DGrammar.java1220 DFA lookaheadDFA = new LL1DFA(decision, decisionStartState, altLook); in createLL_1_LookaheadDFA() local
1221 setLookaheadDFA(decision, lookaheadDFA); in createLL_1_LookaheadDFA()
1222 updateLineColumnToLookaheadDFAMap(lookaheadDFA); in createLL_1_LookaheadDFA()
1223 return lookaheadDFA; in createLL_1_LookaheadDFA()
1270 DFA lookaheadDFA = new LL1DFA(decision, decisionStartState, edgeMap); in createLL_1_LookaheadDFA() local
1271 setLookaheadDFA(decision, lookaheadDFA); in createLL_1_LookaheadDFA()
1274 updateLineColumnToLookaheadDFAMap(lookaheadDFA); in createLL_1_LookaheadDFA()
1276 return lookaheadDFA; in createLL_1_LookaheadDFA()
1279 private void updateLineColumnToLookaheadDFAMap(DFA lookaheadDFA) { in updateLineColumnToLookaheadDFAMap() argument
1280 GrammarAST decisionAST = nfa.grammar.getDecisionBlockAST(lookaheadDFA.decisionNumber); in updateLineColumnToLookaheadDFAMap()
[all …]
DGrammarAST.java66 public DFA lookaheadDFA = null; field in GrammarAST
177 return lookaheadDFA; in getLookaheadDFA()
180 public void setLookaheadDFA(DFA lookaheadDFA) { in setLookaheadDFA() argument
181 this.lookaheadDFA = lookaheadDFA; in setLookaheadDFA()