()
| 389 | } |
| 390 | |
| 391 | function workLoopSync() { |
| 392 | while (workInProgress !== null) { |
| 393 | performUnitOfWork(workInProgress); |
| 394 | } |
| 395 | } |
| 396 | function workLoopConcurrent() { |
| 397 | while (workInProgress !== null && !unstable_shouldYield()) { |
| 398 | performUnitOfWork(workInProgress); |
no test coverage detected