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

Method dumpCppSymbols

deps/v8/tools/dumpcpp.mjs:58–67  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

56 }
57
58 dumpCppSymbols() {
59 const staticEntries = this.codeMap_.getAllStaticEntriesWithAddresses();
60 const total = staticEntries.length;
61 for (let i = 0; i < total; ++i) {
62 const entry = staticEntries[i];
63 const printValues = ['cpp', `0x${entry[0].toString(16)}`, entry[1].size,
64 `"${entry[1].name}"`];
65 console.log(printValues.join(','));
66 }
67 }
68}

Callers 1

dumpcpp-driver.mjsFile · 0.80

Calls 4

toStringMethod · 0.45
logMethod · 0.45
joinMethod · 0.45

Tested by

no test coverage detected