List of strict dominators for this basic block (read-only)
(self)
| 444 | |
| 445 | @property |
| 446 | def strict_dominators(self) -> List['BasicBlock']: |
| 447 | """List of strict dominators for this basic block (read-only)""" |
| 448 | count = ctypes.c_ulonglong() |
| 449 | blocks = core.BNGetBasicBlockStrictDominators(self.handle, count, False) |
| 450 | return self._make_blocks(blocks, count.value) |
| 451 | |
| 452 | @property |
| 453 | def immediate_dominator(self) -> Optional['BasicBlock']: |
nothing calls this directly
no test coverage detected