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

Method entry

deps/v8/tools/system-analyzer/view/code-panel.mjs:40–60  ·  view source on GitHub ↗
(entry)

Source from the content-addressed store, hash-verified

38 }
39
40 set entry(entry) {
41 this._entry = entry;
42 if (!entry) {
43 this._propertiesNode.propertyDict = {};
44 } else {
45 this._propertiesNode.propertyDict = {
46 '__this__': entry,
47 functionName: entry.functionName,
48 size: formatBytes(entry.size),
49 creationTime: formatMicroSeconds(entry.time / 1000),
50 sourcePosition: entry.sourcePosition,
51 script: entry.script,
52 type: entry.type,
53 kind: entry.kindName,
54 variants: entry.variants.length > 1 ?
55 [undefined, ...entry.variants] :
56 undefined,
57 };
58 }
59 this.requestUpdate();
60 }
61
62 _update() {
63 this._updateSelect();

Callers

nothing calls this directly

Calls 3

formatBytesFunction · 0.90
formatMicroSecondsFunction · 0.90
requestUpdateMethod · 0.45

Tested by

no test coverage detected