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

Method dominator_tree_children

python/basicblock.py:469–473  ·  view source on GitHub ↗

List of child blocks in the dominator tree for this basic block (read-only)

(self)

Source from the content-addressed store, hash-verified

467
468 @property
469 def dominator_tree_children(self) -> List['BasicBlock']:
470 """List of child blocks in the dominator tree for this basic block (read-only)"""
471 count = ctypes.c_ulonglong()
472 blocks = core.BNGetBasicBlockDominatorTreeChildren(self.handle, count, False)
473 return self._make_blocks(blocks, count.value)
474
475 @property
476 def post_dominator_tree_children(self) -> List['BasicBlock']:

Callers

nothing calls this directly

Calls 1

_make_blocksMethod · 0.95

Tested by

no test coverage detected