(root, fiber, lane)
| 13760 | return workInProgressDeferredLane; |
| 13761 | } |
| 13762 | function scheduleUpdateOnFiber(root, fiber, lane) { |
| 13763 | if ( |
| 13764 | (root === workInProgressRoot && 2 === workInProgressSuspendedReason) || |
| 13765 | null !== root.cancelPendingCommit |
| 13766 | ) |
| 13767 | prepareFreshStack(root, 0), |
| 13768 | markRootSuspended( |
| 13769 | root, |
| 13770 | workInProgressRootRenderLanes, |
| 13771 | workInProgressDeferredLane, |
| 13772 | !1 |
| 13773 | ); |
| 13774 | markRootUpdated$1(root, lane); |
| 13775 | if (0 === (executionContext & 2) || root !== workInProgressRoot) |
| 13776 | root === workInProgressRoot && |
| 13777 | (0 === (executionContext & 2) && |
| 13778 | (workInProgressRootInterleavedUpdatedLanes |= lane), |
| 13779 | 4 === workInProgressRootExitStatus && |
| 13780 | markRootSuspended( |
| 13781 | root, |
| 13782 | workInProgressRootRenderLanes, |
| 13783 | workInProgressDeferredLane, |
| 13784 | !1 |
| 13785 | )), |
| 13786 | ensureRootIsScheduled(root); |
| 13787 | } |
| 13788 | function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { |
| 13789 | if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(327)); |
| 13790 | var shouldTimeSlice = |
no test coverage detected
searching dependent graphs…