MCPcopy Create free account
hub / github.com/microsoft/SandDance / resetChildFibers

Function resetChildFibers

docs/external/js/react-dom.development.js:14524–14531  ·  view source on GitHub ↗
(workInProgress, renderExpirationTime)

Source from the content-addressed store, hash-verified

14522 } // Reset a workInProgress child set to prepare it for a second pass.
14523
14524 function resetChildFibers(workInProgress, renderExpirationTime) {
14525 var child = workInProgress.child;
14526
14527 while (child !== null) {
14528 resetWorkInProgress(child, renderExpirationTime);
14529 child = child.sibling;
14530 }
14531 }
14532
14533 var NO_CONTEXT = {};
14534 var contextStackCursor$1 = createCursor(NO_CONTEXT);

Callers 1

completeWorkFunction · 0.85

Calls 1

resetWorkInProgressFunction · 0.85

Tested by

no test coverage detected