(effect: Effect.Effect<A, E, R>, options?: Effect.RunOptions)
| 330 | cachedContext: undefined, |
| 331 | context() { |
| 332 | return self.cachedContext === undefined ? |
| 333 | Effect.runPromise(self.contextEffect) : |
| 334 | Promise.resolve(self.cachedContext) |
| 335 | }, |
| 336 | dispose(): Promise<void> { |
| 337 | return Effect.runPromise(self.disposeEffect) |
| 338 | }, |
| 339 | [Symbol.asyncDispose](): Promise<void> { |
no test coverage detected
searching dependent graphs…