()
| 346 | const exit = options.exit ?? MutableRef.make(undefined) |
| 347 | const latch = Latch.makeUnsafe(false) |
| 348 | function onReadable() { |
| 349 | latch.openUnsafe() |
| 350 | } |
| 351 | function onError(error: unknown) { |
| 352 | exit.current = Exit.fail(options.onError(error)) |
| 353 | latch.openUnsafe() |
nothing calls this directly
no test coverage detected