| 677 | * a new computation, and the older in-flight result won't repopulate the cache. |
| 678 | */ |
| 679 | export class SharedPromiseCache<ValueT> { |
| 680 | readonly #cache = new Map<string, SharedPromiseCachedResult<ValueT>>(); |
| 681 | |
| 682 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected