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

Method immediate_dominator

python/basicblock.py:453–458  ·  view source on GitHub ↗

Immediate dominator of this basic block (read-only)

(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_create_instanceMethod · 0.95

Tested by

no test coverage detected