MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / outgoing_edges

Method outgoing_edges

python/basicblock.py:388–391  ·  view source on GitHub ↗

List of basic block outgoing edges (read-only)

(self)

Source from the content-addressed store, hash-verified

386
387 @property
388 def outgoing_edges(self) -> List[BasicBlockEdge]:
389 """List of basic block outgoing edges (read-only)"""
390 count = ctypes.c_ulonglong(0)
391 return self._make_edges(core.BNGetBasicBlockOutgoingEdges(self.handle, count), count.value, False)
392
393 @property
394 def incoming_edges(self) -> List[BasicBlockEdge]:

Callers

nothing calls this directly

Calls 1

_make_edgesMethod · 0.95

Tested by

no test coverage detected