(error: any)
| 83 | ) |
| 84 | } |
| 85 | function onError(error: any) { |
| 86 | Deferred.unsafeDone( |
| 87 | closeLatch, |
| 88 | new WorkerError({ reason: "unknown", cause: error.data }) |
| 89 | ) |
| 90 | } |
| 91 | function handlePort(port: MessagePort) { |
| 92 | const fiber = Scope.fork(scope, ExecStrategy.sequential).pipe( |
| 93 | Effect.flatMap((scope) => { |
nothing calls this directly
no test coverage detected