()
| 14076 | : !0; |
| 14077 | } |
| 14078 | function resetWorkInProgressStack() { |
| 14079 | if (null !== workInProgress) { |
| 14080 | if (0 === workInProgressSuspendedReason) |
| 14081 | var interruptedWork = workInProgress.return; |
| 14082 | else |
| 14083 | (interruptedWork = workInProgress), |
| 14084 | (lastContextDependency = currentlyRenderingFiber = null), |
| 14085 | resetHooksOnUnwind(interruptedWork), |
| 14086 | (thenableState$1 = null), |
| 14087 | (thenableIndexCounter$1 = 0), |
| 14088 | (interruptedWork = workInProgress); |
| 14089 | for (; null !== interruptedWork; ) |
| 14090 | unwindInterruptedWork(interruptedWork.alternate, interruptedWork), |
| 14091 | (interruptedWork = interruptedWork.return); |
| 14092 | workInProgress = null; |
| 14093 | } |
| 14094 | } |
| 14095 | function prepareFreshStack(root, lanes) { |
| 14096 | root.finishedWork = null; |
| 14097 | root.finishedLanes = 0; |
no test coverage detected
searching dependent graphs…