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

Function createNode

deps/v8/test/mjsunit/tools/profile_view.mjs:31–37  ·  view source on GitHub ↗
(name, time, opt_parent)

Source from the content-addressed store, hash-verified

29
30
31function createNode(name, time, opt_parent) {
32 var node = new ProfileView.Node(name, time, time, null);
33 if (opt_parent) {
34 opt_parent.addChild(node);
35 }
36 return node;
37}
38
39
40(function testSorting() {

Callers 1

profile_view.mjsFile · 0.70

Calls 1

addChildMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…