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

Method process

handsontable/src/utils/dataStructures/tree.ts:211–217  ·  view source on GitHub ↗
(node: TreeNode<T>)

Source from the content-addressed store, hash-verified

209 */
210 walkUp(callback: (this: TreeNode<T>, node: TreeNode<T>) => boolean | void) {
211 const process = (node: TreeNode<T>) => {
212 const continueTraverse = callback.call(this, node);
213
214 if (continueTraverse !== false && node.parent !== null) {
215 process(node.parent);
216 }
217 };
218
219 process(this);
220 }

Callers

nothing calls this directly

Calls 1

processFunction · 0.70

Tested by

no test coverage detected