Home | History | Annotate | Download | only in yacc

Lines Matching refs:Lookahead

238 // lookahead set information
241 var nolook = 0 // flag to turn off lookahead computations
242 var tbitset = 0 // size of lookahead sets
243 var clset Lkset // temporary storage for lookahead computations
1768 // later passes fix up lookahead
1870 // compute the lookahead
3330 Lookahead() int
3334 lookahead func() int
3337 func (p *$$ParserImpl) Lookahead() int {
3338 return p.lookahead()
3343 lookahead: func() int { return -1 },
3368 func $$ErrorMessage(state, lookAhead int) string {
3376 if e.state == state && e.token == lookAhead {
3381 res := "syntax error: unexpected " + $$Tokname(lookAhead)
3484 $$rcvr.lookahead = func() int { return $$char }
3486 // Make sure we report no lookahead when not parsing.