(effect: Effect.Effect<A, E, R>, options?: {
readonly signal?: AbortSignal | undefined
})
| 375 | Effect.runPromiseExitWith(self.cachedContext)(effect, mergeRunOptions(options)) |
| 376 | }, |
| 377 | runPromise<A, E>(effect: Effect.Effect<A, E, R>, options?: { |
| 378 | readonly signal?: AbortSignal | undefined |
| 379 | }): Promise<A> { |
| 380 | return self.cachedContext === undefined ? |
| 381 | Effect.runPromise(provide(self, effect), mergeRunOptions(options)) : |
| 382 | Effect.runPromiseWith(self.cachedContext)(effect, mergeRunOptions(options)) |
| 383 | } |
| 384 | } |
| 385 | return self |
| 386 | } |
no test coverage detected