MCPcopy Index your code
hub / github.com/caseywebdev/react-list / entangleTransitions

Function entangleTransitions

docs/index.js:10780–10789  ·  view source on GitHub ↗
(root, fiber, lane)

Source from the content-addressed store, hash-verified

10778 return getRootForUpdatedFiber(fiber);
10779}
10780function entangleTransitions(root, fiber, lane) {
10781 fiber = fiber.updateQueue;
10782 if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane & 4194176))) {
10783 var queueLanes = fiber.lanes;
10784 queueLanes &= root.pendingLanes;
10785 lane |= queueLanes;
10786 fiber.lanes = lane;
10787 markRootEntangled(root, lane);
10788 }
10789}
10790function enqueueCapturedUpdate(workInProgress, capturedUpdate) {
10791 var queue = workInProgress.updateQueue,
10792 current = workInProgress.alternate;

Callers 3

refreshCacheFunction · 0.85
index.jsFile · 0.85
updateContainerImplFunction · 0.85

Calls 1

markRootEntangledFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…