Immediate dominator of this basic block (read-only)
(self)
| 459 | |
| 460 | @property |
| 461 | def immediate_post_dominator(self) -> Optional['BasicBlock']: |
| 462 | """Immediate dominator of this basic block (read-only)""" |
| 463 | result = core.BNGetBasicBlockImmediateDominator(self.handle, True) |
| 464 | if not result: |
| 465 | return None |
| 466 | return self._create_instance(result) |
| 467 | |
| 468 | @property |
| 469 | def dominator_tree_children(self) -> List['BasicBlock']: |
nothing calls this directly
no test coverage detected