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

Method info

deps/v8/tools/parse-processor.mjs:338–350  ·  view source on GitHub ↗
(name, funktions)

Source from the content-addressed store, hash-verified

336 };
337
338 let info = (name, funktions) => {
339 let ownBytes = ownBytesSum(funktions);
340 let nofPercent = Math.round(funktions.length / nofFunktions * 100);
341 let value = (funktions.length + "#").padStart(7) +
342 (nofPercent + "%").padStart(5) +
343 BYTES(ownBytes, this.bytesTotal).padStart(16);
344 log((` - ${name}`).padEnd(20) + value);
345 this.metrics.set(name + "-bytes", ownBytes);
346 this.metrics.set(name + "-count", funktions.length);
347 this.metrics.set(name + "-count-percent", nofPercent);
348 this.metrics.set(name + "-bytes-percent",
349 Math.round(ownBytes / this.bytesTotal * 100));
350 };
351
352 log(` - file: ${this.file}`);
353 log(' - details: ' +

Callers 15

_printDiagnosticMethod · 0.80
StartingMethod · 0.80
HasRunMethod · 0.80
additionalHeadersMethod · 0.80
mainFunction · 0.80
test-console.jsFile · 0.80
branchFunction · 0.80

Calls 3

BYTESFunction · 0.85
logFunction · 0.50
setMethod · 0.45

Tested by 3

_printDiagnosticMethod · 0.64
StartingMethod · 0.64
HasRunMethod · 0.64