(msg string)
| 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. |
| 219 | // They are good synchronization points in case of syntax |
no test coverage detected