(this: Emit.Emit<R, E, A, B>, message: string)
| 20 | return this(Effect.die(defect)) |
| 21 | }, |
| 22 | dieMessage(this: Emit.Emit<R, E, A, B>, message: string) { |
| 23 | return this(Effect.dieMessage(message)) |
| 24 | }, |
| 25 | done(this: Emit.Emit<R, E, A, B>, exit: Exit.Exit<A, E>) { |
| 26 | return this(Effect.suspend(() => Exit.mapBoth(exit, { onFailure: Option.some, onSuccess: Chunk.of }))) |
| 27 | }, |
nothing calls this directly
no test coverage detected