scan returns the next token from the underlying scanner.
()
| 554 | |
| 555 | // scan returns the next token from the underlying scanner. |
| 556 | func (p *Parser) scan() (tok Token, pos Pos, lit string) { return p.s.Scan() } |
| 557 | |
| 558 | // scanIgnoreWhitespace scans the next non-whitespace token. |
| 559 | func (p *Parser) scanIgnoreWhitespace() (tok Token, pos Pos, lit string) { |
no test coverage detected