MCPcopy Index your code
hub / github.com/nodejs/node / filterFromFilterId

Function filterFromFilterId

deps/v8/tools/profview/profview.js:469–479  ·  view source on GitHub ↗
(id)

Source from the content-addressed store, hash-verified

467}
468
469function filterFromFilterId(id) {
470 switch (id) {
471 case "full-tree":
472 return (type, kind) => true;
473 case "js-funs":
474 return (type, kind) => type !== 'CODE';
475 case "js-exclude-bc":
476 return (type, kind) =>
477 type !== 'CODE' || kind !== "BytecodeHandler";
478 }
479}
480
481function createIndentNode(indent) {
482 let div = document.createElement("div");

Callers 3

expandTreeMethod · 0.85
renderMethod · 0.85
renderMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…