(effect: Effect.Effect<A, E, R>, options?: Effect.RunOptions)
| 355 | readonly onExit: (exit: Exit.Exit<A, E | ER>) => void |
| 356 | } |
| 357 | ): (interruptor?: number | undefined) => void { |
| 358 | return self.cachedContext === undefined ? |
| 359 | Effect.runCallback(provide(self, effect), mergeRunOptions(options)) : |
| 360 | Effect.runCallbackWith(self.cachedContext)(effect, mergeRunOptions(options)) |
| 361 | }, |
| 362 | runSyncExit<A, E>(effect: Effect.Effect<A, E, R>): Exit.Exit<A, E | ER> { |
| 363 | return self.cachedContext === undefined ? |
| 364 | Effect.runSyncExit(provide(self, effect)) : |
no test coverage detected
searching dependent graphs…