MCPcopy Create free account
hub / github.com/caseywebdev/react-list / bubbleProperties

Function bubbleProperties

docs/index.js:13154–13177  ·  view source on GitHub ↗
(completedWork)

Source from the content-addressed store, hash-verified

13152 }
13153}
13154function bubbleProperties(completedWork) {
13155 var didBailout =
13156 null !== completedWork.alternate &&
13157 completedWork.alternate.child === completedWork.child,
13158 newChildLanes = 0,
13159 subtreeFlags = 0;
13160 if (didBailout)
13161 for (var child$132 = completedWork.child; null !== child$132; )
13162 (newChildLanes |= child$132.lanes | child$132.childLanes),
13163 (subtreeFlags |= child$132.subtreeFlags & 31457280),
13164 (subtreeFlags |= child$132.flags & 31457280),
13165 (child$132.return = completedWork),
13166 (child$132 = child$132.sibling);
13167 else
13168 for (child$132 = completedWork.child; null !== child$132; )
13169 (newChildLanes |= child$132.lanes | child$132.childLanes),
13170 (subtreeFlags |= child$132.subtreeFlags),
13171 (subtreeFlags |= child$132.flags),
13172 (child$132.return = completedWork),
13173 (child$132 = child$132.sibling);
13174 completedWork.subtreeFlags |= subtreeFlags;
13175 completedWork.childLanes = newChildLanes;
13176 return didBailout;
13177}
13178function completeWork(current, workInProgress, renderLanes) {
13179 var newProps = workInProgress.pendingProps;
13180 popTreeContext(workInProgress);

Callers 1

completeWorkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…