(strategy: ExecutionStrategy.ExecutionStrategy)
| 2815 | |
| 2816 | /* @internal */ |
| 2817 | export const finalizersMask = (strategy: ExecutionStrategy.ExecutionStrategy) => |
| 2818 | <A, E, R>( |
| 2819 | self: ( |
| 2820 | restore: <A1, E1, R1>(self: Effect.Effect<A1, E1, R1>) => Effect.Effect<A1, E1, R1> |
| 2821 | ) => Effect.Effect<A, E, R> |
| 2822 | ): Effect.Effect<A, E, R> => finalizersMaskInternal(strategy, true)(self) |
| 2823 | |
| 2824 | /* @internal */ |
| 2825 | export const finalizersMaskInternal = |
nothing calls this directly
no test coverage detected