MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / immediate_post_dominator

Method immediate_post_dominator

python/basicblock.py:461–466  ·  view source on GitHub ↗

Immediate dominator of this basic block (read-only)

(self)

Source from the content-addressed store, hash-verified

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']:

Callers

nothing calls this directly

Calls 1

_create_instanceMethod · 0.95

Tested by

no test coverage detected