(msg string)
| 213 | // Convenience methods using the current token position. |
| 214 | func (p *parser) pos() Pos { return p.posAt(p.line, p.col) } |
| 215 | func (p *parser) error(msg string) { p.errorAt(p.pos(), msg) } |
| 216 | func (p *parser) syntaxError(msg string) { p.syntaxErrorAt(p.pos(), msg) } |
| 217 | |
| 218 | // The stopset contains keywords that start a statement. |
no test coverage detected