Basic block associated with this part of the flow graph (well not automatically cause the node to render as a native basic block)
(self)
| 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): |
nothing calls this directly
no test coverage detected