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

Function createTypeNode

deps/v8/tools/profview/profview.js:458–467  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

456}
457
458function createTypeNode(type) {
459 if (type === "CAT") {
460 return document.createTextNode("");
461 }
462 let span = document.createElement("span");
463 span.classList.add("code-type-chip");
464 span.textContent = codeTypeToText(type);
465
466 return span;
467}
468
469function filterFromFilterId(id) {
470 switch (id) {

Callers 2

expandTreeMethod · 0.85

Calls 3

codeTypeToTextFunction · 0.85
createElementMethod · 0.80
addMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…