Home | History | Annotate | Download | only in ply

Lines Matching refs:lookaheads

1263 #       lookaheads - LALR lookahead symbols for this item
1275 self.lookaheads = { }
2317 # This function directly attaches the lookaheads to productions contained
2325 if not state in p.lookaheads:
2326 p.lookaheads[state] = []
2329 if a not in p.lookaheads[state]: p.lookaheads[state].append(a)
2354 # Add all of the lookaheads
2405 laheads = p.lookaheads[st]