| 668 | } |
| 669 | |
| 670 | type yyParserImpl struct { |
| 671 | lval yySymType |
| 672 | stack [yyInitialStackSize]yySymType |
| 673 | char int |
| 674 | } |
| 675 | |
| 676 | func (p *yyParserImpl) Lookahead() int { |
| 677 | return p.char |
nothing calls this directly
no outgoing calls
no test coverage detected