| 143 | func (f errFatal) withContext(ctx string) error { f.ctx = addCtx(f.ctx, ctx); return f } |
| 144 | |
| 145 | type errRecursion struct{} |
| 146 | |
| 147 | func (e errRecursion) Error() string { return "msgp: recursion limit reached" } |
| 148 | func (e errRecursion) Resumable() bool { return false } |
nothing calls this directly
no outgoing calls
no test coverage detected