(errs []error, sep string)
| 235 | } |
| 236 | |
| 237 | func joinErrors(errs []error, sep string) error { |
| 238 | return &joinedErrors{ |
| 239 | errs: errs, |
| 240 | sep: sep, |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | func (e *joinedErrors) Error() string { |
| 245 | errs := make([]string, 0, len(e.errs)) |
no outgoing calls
no test coverage detected
searching dependent graphs…