MCPcopy Create free account
hub / github.com/handsontable/handsontable / process

Function process

handsontable/src/utils/dataStructures/tree.ts:67–79  ·  view source on GitHub ↗

* Internal processor.

()

Source from the content-addressed store, hash-verified

65 * Internal processor.
66 */
67 function process() {
68 if (queue.length === 0) {
69 return;
70 }
71
72 const node = queue.shift()!;
73
74 queue.push(...node.childs);
75
76 if (callback.call(context, node) !== false) {
77 process();
78 }
79 }
80
81 process();
82}

Callers 11

breadthFirstFunction · 0.70
processMethod · 0.70
walkUpMethod · 0.70
sourceFunction · 0.50
sourceFunction · 0.50
AppComponentClass · 0.50
sourceFunction · 0.50
sourceFunction · 0.50

Calls 2

shiftMethod · 0.45
pushMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…