scan returns the next token from the underlying scanner.
()
| 654 | |
| 655 | // scan returns the next token from the underlying scanner. |
| 656 | func (p *Parser) scan() (tok token, pos int, lit string) { return p.s.scan() } |
| 657 | |
| 658 | // scanIgnoreWhitespace scans the next non-whitespace. |
| 659 | func (p *Parser) scanIgnoreWhitespace() (tok token, pos int, lit string) { |
no outgoing calls