MCPcopy Create free account
hub / github.com/BetaSu/big-react / workLoopSync

Function workLoopSync

packages/react-reconciler/src/workLoop.ts:391–395  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 1

renderRootFunction · 0.85

Calls 1

performUnitOfWorkFunction · 0.85

Tested by

no test coverage detected