| 584 | } |
| 585 | |
| 586 | type jsonpathParserImpl struct { |
| 587 | lval jsonpathSymType |
| 588 | stack [jsonpathInitialStackSize]jsonpathSymType |
| 589 | char int |
| 590 | } |
| 591 | |
| 592 | func (p *jsonpathParserImpl) Lookahead() int { |
| 593 | return p.char |
nothing calls this directly
no outgoing calls
no test coverage detected