* Gets the iteration types of an `Iterator`-like or `AsyncIterator`-like type from the * cache. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterator` instead.
(type, resolver)
| 83388 | * `getIterationTypesOfIterator` instead. |
| 83389 | */ |
| 83390 | function getIterationTypesOfIteratorCached(type, resolver) { |
| 83391 | return getCachedIterationTypes(type, resolver.iteratorCacheKey); |
| 83392 | } |
| 83393 | /** |
| 83394 | * Gets the iteration types of an `Iterator`-like or `AsyncIterator`-like type from the |
| 83395 | * cache or from common heuristics. |
no test coverage detected
searching dependent graphs…