@noinline
()
| 26510 | |
| 26511 | |
| 26512 | function workLoopSync() { |
| 26513 | // Already timed out, so perform work without checking if we need to yield. |
| 26514 | while (workInProgress !== null) { |
| 26515 | performUnitOfWork(workInProgress); |
| 26516 | } |
| 26517 | } |
| 26518 | |
| 26519 | function renderRootConcurrent(root, lanes) { |
| 26520 | var prevExecutionContext = executionContext; |
no test coverage detected
searching dependent graphs…