| 381 | } |
| 382 | |
| 383 | type yyParserImpl struct { |
| 384 | lval yySymType |
| 385 | stack [yyInitialStackSize]yySymType |
| 386 | char int |
| 387 | } |
| 388 | |
| 389 | func (p *yyParserImpl) Lookahead() int { |
| 390 | return p.char |
nothing calls this directly
no outgoing calls
no test coverage detected