(workInProgress: Fiber, cache: Cache)
| 118 | } |
| 119 | |
| 120 | export function pushCacheProvider(workInProgress: Fiber, cache: Cache) { |
| 121 | pushProvider(workInProgress, CacheContext, cache); |
| 122 | } |
| 123 | |
| 124 | export function popCacheProvider(workInProgress: Fiber, cache: Cache) { |
| 125 | popProvider(CacheContext, workInProgress); |
no test coverage detected