(report bool)
| 25 | } |
| 26 | |
| 27 | func WithShouldReport(report bool) Option { |
| 28 | return func(ec *ErrorContext) { |
| 29 | ec.shouldReport = report |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | func WithDocsURL(url string) Option { |
| 34 | return func(ec *ErrorContext) { |
no outgoing calls
no test coverage detected