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

Method hideDead

deps/v8/tools/turbolizer/src/views/graph-view.ts:689–697  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

687 }
688
689 private hideDead(): void {
690 for (const node of this.graph.nodes()) {
691 if (!node.isLive()) {
692 node.visible = false;
693 this.state.selection.select([node], false);
694 }
695 }
696 this.updateGraphVisibility();
697 }
698
699 private showDead(): void {
700 for (const node of this.graph.nodes()) {

Callers 1

toggleHideDeadActionMethod · 0.45

Calls 4

updateGraphVisibilityMethod · 0.95
isLiveMethod · 0.80
selectMethod · 0.65
nodesMethod · 0.45

Tested by

no test coverage detected