@noinline
()
| 25829 | |
| 25830 | |
| 25831 | function workLoopConcurrent() { |
| 25832 | // Perform work until Scheduler asks us to yield |
| 25833 | while (workInProgress !== null && !shouldYield()) { |
| 25834 | workInProgress = performUnitOfWork(workInProgress); |
| 25835 | } |
| 25836 | } |
| 25837 | |
| 25838 | function performUnitOfWork(unitOfWork) { |
| 25839 | // The current, flushed, state of this fiber is the alternate. Ideally |
no test coverage detected