MCPcopy Index your code
hub / github.com/krasimir/react-in-patterns / insertUpdateIntoQueue

Function insertUpdateIntoQueue

code/redux/public/app.js:8143–8155  ·  view source on GitHub ↗
(queue, update)

Source from the content-addressed store, hash-verified

8141}
8142
8143function insertUpdateIntoQueue(queue, update) {
8144 // Append the update to the end of the list.
8145 if (queue.last === null) {
8146 // Queue is empty
8147 queue.first = queue.last = update;
8148 } else {
8149 queue.last.next = update;
8150 queue.last = update;
8151 }
8152 if (queue.expirationTime === NoWork || queue.expirationTime > update.expirationTime) {
8153 queue.expirationTime = update.expirationTime;
8154 }
8155}
8156
8157var q1 = void 0;
8158var q2 = void 0;

Callers 1

insertUpdateIntoFiberFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected