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

Class Edge

deps/v8/tools/heap-snapshot-processor.py:30–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29
30class Edge:
31
32 def __init__(self, type, from_node, name, to_node):
33 assert isinstance(type, str)
34 self.type = type
35
36 assert isinstance(from_node, Node)
37 self.from_node = from_node
38
39 assert isinstance(name, str)
40 self.name = name
41
42 assert isinstance(to_node, Node)
43 self.to_node = to_node
44
45
46def main():

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…