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

Method getOrCreateMapEntry

deps/v8/tools/system-analyzer/processor.mjs:603–610  ·  view source on GitHub ↗
(id, time)

Source from the content-addressed store, hash-verified

601 }
602
603 getOrCreateMapEntry(id, time) {
604 if (id === '0x000000000000') return undefined;
605 const map = MapLogEntry.get(id, time);
606 if (map !== undefined) return map;
607 console.warn(`No map details provided: id=${id}`);
608 // Manually patch in a map to continue running.
609 return this.createMapEntry(id, time);
610 }
611
612 getScript(url) {
613 const script = this._profile.getScript(url);

Callers 4

processPropertyICMethod · 0.95
processMapMethod · 0.95
deprecateMapMethod · 0.95
processMapDetailsMethod · 0.95

Calls 3

createMapEntryMethod · 0.95
warnMethod · 0.80
getMethod · 0.65

Tested by

no test coverage detected