(msg string)
| 78 | } |
| 79 | |
| 80 | func (p *gc_parser) error(msg string) { |
| 81 | panic(errors.New(msg)) |
| 82 | } |
| 83 | |
| 84 | func (p *gc_parser) errorf(format string, args ...interface{}) { |
| 85 | p.error(fmt.Sprintf(format, args...)) |
no outgoing calls
no test coverage detected