(input: I, value: A)
| 166 | ) |
| 167 | }, |
| 168 | cachePopulate(input: I, value: A) { |
| 169 | return Effect.cacheRequestResult(makeRequest(tag, input, null as any, null as any), Exit.succeed(value)) |
| 170 | }, |
| 171 | cacheInvalidate(input: I) { |
| 172 | return Effect.withFiberRuntime<void>((fiber) => { |
| 173 | const cache = fiber.getFiberRef(FiberRef.currentRequestCache) |
nothing calls this directly
no test coverage detected
searching dependent graphs…