Back off the parser by one token. Can only be done between calls to next(). It makes the next advance() a no-op.
()
| 615 | // Back off the parser by one token. Can only be done between calls to next(). |
| 616 | // It makes the next advance() a no-op. |
| 617 | func (p *textParser) back() { p.backed = true } |
| 618 | |
| 619 | // Advances the parser and returns the new current token. |
| 620 | func (p *textParser) next() *token { |
no outgoing calls
no test coverage detected