( current, workInProgress, nextBaseLanes, renderLanes )
| 9102 | return workInProgress.child; |
| 9103 | } |
| 9104 | function deferHiddenOffscreenComponent( |
| 9105 | current, |
| 9106 | workInProgress, |
| 9107 | nextBaseLanes, |
| 9108 | renderLanes |
| 9109 | ) { |
| 9110 | var JSCompiler_inline_result = peekCacheFromPool(); |
| 9111 | JSCompiler_inline_result = |
| 9112 | null === JSCompiler_inline_result |
| 9113 | ? null |
| 9114 | : { parent: CacheContext._currentValue, pool: JSCompiler_inline_result }; |
| 9115 | workInProgress.memoizedState = { |
| 9116 | baseLanes: nextBaseLanes, |
| 9117 | cachePool: JSCompiler_inline_result |
| 9118 | }; |
| 9119 | null !== current && pushTransition(workInProgress, null); |
| 9120 | reuseHiddenContextOnStack(); |
| 9121 | pushOffscreenSuspenseHandler(workInProgress); |
| 9122 | null !== current && |
| 9123 | propagateParentContextChanges(current, workInProgress, renderLanes, !0); |
| 9124 | return null; |
| 9125 | } |
| 9126 | function markRef(current, workInProgress) { |
| 9127 | var ref = workInProgress.ref; |
| 9128 | if (null === ref) |
no test coverage detected
searching dependent graphs…