(scope, target, value)
| 48 | return entry.value; |
| 49 | }, |
| 50 | set(scope, target, value) { |
| 51 | entries.set(buildAppResolutionCacheKey(scope, target), { |
| 52 | value, |
| 53 | expiresAtMs: nowMs() + ttlMs, |
| 54 | }); |
| 55 | return value; |
| 56 | }, |
| 57 | clear(scope) { |
| 58 | clearScope(scope); |
| 59 | }, |
nothing calls this directly
no test coverage detected