( report: FrontendErrorReporter, cause: Cause.Cause<unknown>, context: FrontendErrorContext, )
| 232 | }; |
| 233 | |
| 234 | export const reportCauseFailure = ( |
| 235 | report: FrontendErrorReporter, |
| 236 | cause: Cause.Cause<unknown>, |
| 237 | context: FrontendErrorContext, |
| 238 | ): void => { |
| 239 | report(toReportableError(cause, context), context); |
| 240 | }; |
nothing calls this directly
no test coverage detected