List of child blocks in the post dominator tree for this basic block (read-only)
(self)
| 474 | |
| 475 | @property |
| 476 | def post_dominator_tree_children(self) -> List['BasicBlock']: |
| 477 | """List of child blocks in the post dominator tree for this basic block (read-only)""" |
| 478 | count = ctypes.c_ulonglong() |
| 479 | blocks = core.BNGetBasicBlockDominatorTreeChildren(self.handle, count, True) |
| 480 | return self._make_blocks(blocks, count.value) |
| 481 | |
| 482 | @property |
| 483 | def dominance_frontier(self) -> List['BasicBlock']: |
nothing calls this directly
no test coverage detected