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

Method basic_block

python/function.py:3626–3630  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3624
3625 @property
3626 def basic_block(self) -> Optional['basicblock.BasicBlock']:
3627 result = core.BNGetDisassemblyTextRendererBasicBlock(self.handle)
3628 if result:
3629 return basicblock.BasicBlock._from_core_block(handle=result)
3630 return None
3631
3632 @basic_block.setter
3633 def basic_block(self, block: Optional['basicblock.BasicBlock']) -> None:

Callers

nothing calls this directly

Calls 1

_from_core_blockMethod · 0.80

Tested by

no test coverage detected