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

Method incoming_edges

python/basicblock.py:394–397  ·  view source on GitHub ↗

List of basic block incoming edges (read-only)

(self)

Source from the content-addressed store, hash-verified

392
393 @property
394 def incoming_edges(self) -> List[BasicBlockEdge]:
395 """List of basic block incoming edges (read-only)"""
396 count = ctypes.c_ulonglong(0)
397 return self._make_edges(core.BNGetBasicBlockIncomingEdges(self.handle, count), count.value, True)
398
399 @property
400 def has_undetermined_outgoing_edges(self) -> bool:

Callers

nothing calls this directly

Calls 1

_make_edgesMethod · 0.95

Tested by

no test coverage detected