MCPcopy Index your code
hub / github.com/plotly/dash / initializeUpdateQueue

Function initializeUpdateQueue

dash/deps/react-dom@18.2.0.js:13456–13469  ·  view source on GitHub ↗
(fiber)

Source from the content-addressed store, hash-verified

13454 }
13455
13456 function initializeUpdateQueue(fiber) {
13457 var queue = {
13458 baseState: fiber.memoizedState,
13459 firstBaseUpdate: null,
13460 lastBaseUpdate: null,
13461 shared: {
13462 pending: null,
13463 interleaved: null,
13464 lanes: NoLanes
13465 },
13466 effects: null
13467 };
13468 fiber.updateQueue = queue;
13469 }
13470 function cloneUpdateQueue(current, workInProgress) {
13471 // Clone the update queue from current. Unless it's already a clone.
13472 var queue = workInProgress.updateQueue;

Callers 3

mountClassInstanceFunction · 0.70
createFiberRootFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…