MCPcopy Create free account
hub / github.com/nodejs/node / nodes

Method nodes

deps/v8/tools/turbolizer/src/graph.ts:21–26  ·  view source on GitHub ↗
(func = (n: GraphNode) => true)

Source from the content-addressed store, hash-verified

19 }
20
21 public *nodes(func = (n: GraphNode) => true) {
22 for (const node of this.nodeMap) {
23 if (!node || !func(node)) continue;
24 yield node;
25 }
26 }
27
28 public *filteredEdges(func: (e: GraphEdge) => boolean) {
29 for (const node of this.nodes()) {

Callers 15

filteredEdgesMethod · 0.95
initNodesMethod · 0.45
getRankSetsMethod · 0.45
attachSelectionMethod · 0.45
updateGraphVisibilityMethod · 0.45
attachSelectionMethod · 0.45
showAllActionMethod · 0.45
showControlActionMethod · 0.45
hideUnselectedActionMethod · 0.45

Calls 1

funcFunction · 0.50

Tested by

no test coverage detected