Immediate dominator of this basic block (read-only)
(self)
| 451 | |
| 452 | @property |
| 453 | def immediate_dominator(self) -> Optional['BasicBlock']: |
| 454 | """Immediate dominator of this basic block (read-only)""" |
| 455 | result = core.BNGetBasicBlockImmediateDominator(self.handle, False) |
| 456 | if not result: |
| 457 | return None |
| 458 | return self._create_instance(result) |
| 459 | |
| 460 | @property |
| 461 | def immediate_post_dominator(self) -> Optional['BasicBlock']: |
nothing calls this directly
no test coverage detected