()
| 14363 | return workInProgressRootExitStatus; |
| 14364 | } |
| 14365 | function workLoopConcurrent() { |
| 14366 | for (; null !== workInProgress && !shouldYield(); ) |
| 14367 | performUnitOfWork(workInProgress); |
| 14368 | } |
| 14369 | function performUnitOfWork(unitOfWork) { |
| 14370 | var next = beginWork(unitOfWork.alternate, unitOfWork, entangledRenderLanes); |
| 14371 | unitOfWork.memoizedProps = unitOfWork.pendingProps; |
no test coverage detected
searching dependent graphs…