Post dominance frontier for this basic block (read-only)
(self)
| 488 | |
| 489 | @property |
| 490 | def post_dominance_frontier(self) -> List['BasicBlock']: |
| 491 | """Post dominance frontier for this basic block (read-only)""" |
| 492 | count = ctypes.c_ulonglong() |
| 493 | blocks = core.BNGetBasicBlockDominanceFrontier(self.handle, count, True) |
| 494 | return self._make_blocks(blocks, count.value) |
| 495 | |
| 496 | @property |
| 497 | def annotations(self) -> List[List['_function.InstructionTextToken']]: |
nothing calls this directly
no test coverage detected