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

Method basic_block

python/flowgraph.py:154–159  ·  view source on GitHub ↗

Basic block associated with this part of the flow graph (well not automatically cause the node to render as a native basic block)

(self)

Source from the content-addressed store, hash-verified

152
153 @property
154 def basic_block(self):
155 """Basic block associated with this part of the flow graph (well not automatically cause the node to render as a native basic block)"""
156 block = core.BNGetFlowGraphBasicBlock(self.handle)
157 if not block:
158 return None
159 return basicblock.BasicBlock._from_core_block(block)
160
161 @basic_block.setter
162 def basic_block(self, block):

Callers

nothing calls this directly

Calls 1

_from_core_blockMethod · 0.80

Tested by

no test coverage detected