(cause: Cause<E>)
| 195 | return this.done(core.exitFail(error)) |
| 196 | } |
| 197 | failCause(cause: Cause<E>) { |
| 198 | return this.done(core.exitFailCause(cause)) |
| 199 | } |
| 200 | unsafeDone(exit: Exit<void, E>): boolean { |
| 201 | if (this.state._tag !== "Open") { |
| 202 | return false |
no test coverage detected