* Gets the *yield*, *return*, and *next* types of an `Iterable`-like or * `AsyncIterable`-like type from the cache. * * NOTE: You probably don't want to call this directly and should be calling * `getIterationTypesOfIterable` instead.
(type, resolver)
| 83286 | * `getIterationTypesOfIterable` instead. |
| 83287 | */ |
| 83288 | function getIterationTypesOfIterableCached(type, resolver) { |
| 83289 | return getCachedIterationTypes(type, resolver.iterableCacheKey); |
| 83290 | } |
| 83291 | function getIterationTypesOfGlobalIterableType(globalType, resolver) { |
| 83292 | var globalIterationTypes = getIterationTypesOfIterableCached(globalType, resolver) || |
| 83293 | getIterationTypesOfIterableSlow(globalType, resolver, /*errorNode*/ undefined); |
no test coverage detected
searching dependent graphs…