MCPcopy
hub / github.com/webpack/webpack / nodeChange

Method nodeChange

lib/MultiCompiler.js:558–567  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

556 * @returns {void}
557 */
558 const nodeChange = (node) => {
559 nodeInvalid(node);
560 if (node.state === "pending") {
561 node.state = "blocked";
562 }
563 if (node.state === "blocked") {
564 queue.enqueue(node);
565 processQueue();
566 }
567 };
568
569 /** @type {SetupResult[]} */
570 const setupResults = [];

Callers

nothing calls this directly

Calls 2

processQueueFunction · 0.70
enqueueMethod · 0.45

Tested by

no test coverage detected