@noinline
()
| 2679 | // The work loop is an extremely hot path. Tell Closure not to inline it. |
| 2680 | /** @noinline */ |
| 2681 | function workLoopSync() { |
| 2682 | // Perform work without checking if we need to yield between fiber. |
| 2683 | while (workInProgress !== null) { |
| 2684 | performUnitOfWork(workInProgress); |
| 2685 | } |
| 2686 | } |
| 2687 | |
| 2688 | function renderRootConcurrent(root: FiberRoot, lanes: Lanes): RootExitStatus { |
| 2689 | const prevExecutionContext = executionContext; |
no test coverage detected