MCPcopy Create free account
hub / github.com/plotly/dash / commitPassiveMountEffects_begin

Function commitPassiveMountEffects_begin

dash/deps/react-dom@18.3.1.js:24918–24930  ·  view source on GitHub ↗
(subtreeRoot, root, committedLanes, committedTransitions)

Source from the content-addressed store, hash-verified

24916 }
24917
24918 function commitPassiveMountEffects_begin(subtreeRoot, root, committedLanes, committedTransitions) {
24919 while (nextEffect !== null) {
24920 var fiber = nextEffect;
24921 var firstChild = fiber.child;
24922
24923 if ((fiber.subtreeFlags & PassiveMask) !== NoFlags && firstChild !== null) {
24924 firstChild.return = fiber;
24925 nextEffect = firstChild;
24926 } else {
24927 commitPassiveMountEffects_complete(subtreeRoot, root, committedLanes, committedTransitions);
24928 }
24929 }
24930 }
24931
24932 function commitPassiveMountEffects_complete(subtreeRoot, root, committedLanes, committedTransitions) {
24933 while (nextEffect !== null) {

Callers 1

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…