(format string, args ...any)
| 578 | } |
| 579 | |
| 580 | func (p *codeParser) errorf(format string, args ...any) { |
| 581 | p.parser.errorf(format, args...) |
| 582 | } |
| 583 | |
| 584 | func (p *codeParser) sourceFrom(pos token.Pos) string { |
| 585 | return p.parser.sourceFrom(p.baseOffset + p.file.Offset(pos)) |
no test coverage detected