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

Function initializeUpdateQueue

dash/deps/react-dom@18.3.1.js:14569–14582  ·  view source on GitHub ↗
(fiber)

Source from the content-addressed store, hash-verified

14567 }
14568
14569 function initializeUpdateQueue(fiber) {
14570 var queue = {
14571 baseState: fiber.memoizedState,
14572 firstBaseUpdate: null,
14573 lastBaseUpdate: null,
14574 shared: {
14575 pending: null,
14576 interleaved: null,
14577 lanes: NoLanes
14578 },
14579 effects: null
14580 };
14581 fiber.updateQueue = queue;
14582 }
14583 function cloneUpdateQueue(current, workInProgress) {
14584 // Clone the update queue from current. Unless it's already a clone.
14585 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…