(format string, args ...interface{})
| 82 | } |
| 83 | |
| 84 | func (p *gc_parser) errorf(format string, args ...interface{}) { |
| 85 | p.error(fmt.Sprintf(format, args...)) |
| 86 | } |
| 87 | |
| 88 | func (p *gc_parser) expect(tok rune) string { |
| 89 | lit := p.lit |
no test coverage detected