@noinline
()
| 26587 | |
| 26588 | |
| 26589 | function workLoopConcurrent() { |
| 26590 | // Perform work until Scheduler asks us to yield |
| 26591 | while (workInProgress !== null && !shouldYield()) { |
| 26592 | performUnitOfWork(workInProgress); |
| 26593 | } |
| 26594 | } |
| 26595 | |
| 26596 | function performUnitOfWork(unitOfWork) { |
| 26597 | // The current, flushed, state of this fiber is the alternate. Ideally |
no test coverage detected
searching dependent graphs…