List of child blocks in the dominator tree for this basic block (read-only)
(self)
| 467 | |
| 468 | @property |
| 469 | def dominator_tree_children(self) -> List['BasicBlock']: |
| 470 | """List of child blocks in the dominator tree for this basic block (read-only)""" |
| 471 | count = ctypes.c_ulonglong() |
| 472 | blocks = core.BNGetBasicBlockDominatorTreeChildren(self.handle, count, False) |
| 473 | return self._make_blocks(blocks, count.value) |
| 474 | |
| 475 | @property |
| 476 | def post_dominator_tree_children(self) -> List['BasicBlock']: |
nothing calls this directly
no test coverage detected