()
| 394 | } |
| 395 | } |
| 396 | function workLoopConcurrent() { |
| 397 | while (workInProgress !== null && !unstable_shouldYield()) { |
| 398 | performUnitOfWork(workInProgress); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | function performUnitOfWork(fiber: FiberNode) { |
| 403 | const next = beginWork(fiber, wipRootRenderLane); |
no test coverage detected