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

Method source_block

python/basicblock.py:340–345  ·  view source on GitHub ↗

The corresponding assembly-level basic block for this basic block (read-only)

(self)

Source from the content-addressed store, hash-verified

338
339 @property
340 def source_block(self) -> Optional['BasicBlock']:
341 """The corresponding assembly-level basic block for this basic block (read-only)"""
342 block = core.BNGetBasicBlockSource(self.handle)
343 if block is None:
344 return None
345 return BasicBlock(block, self._view)
346
347 @property
348 def start(self) -> int:

Callers

nothing calls this directly

Calls 1

BasicBlockClass · 0.70

Tested by

no test coverage detected