(unitOfWork)
| 14367 | performUnitOfWork(workInProgress); |
| 14368 | } |
| 14369 | function performUnitOfWork(unitOfWork) { |
| 14370 | var next = beginWork(unitOfWork.alternate, unitOfWork, entangledRenderLanes); |
| 14371 | unitOfWork.memoizedProps = unitOfWork.pendingProps; |
| 14372 | null === next ? completeUnitOfWork(unitOfWork) : (workInProgress = next); |
| 14373 | } |
| 14374 | function replaySuspendedUnitOfWork(unitOfWork) { |
| 14375 | var next = unitOfWork; |
| 14376 | var current = next.alternate; |
no test coverage detected
searching dependent graphs…