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

Method parent

python/highlevelil.py:535–538  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

533
534 @property
535 def parent(self) -> Optional['HighLevelILInstruction']:
536 if self.core_instr.parent >= core.BNGetHighLevelILExprCount(self.function.handle):
537 return None
538 return HighLevelILInstruction.create(self.function, self.core_instr.parent, self.as_ast)
539
540 @property
541 def ssa_form(self) -> 'HighLevelILInstruction':

Callers

nothing calls this directly

Calls 1

createMethod · 0.45

Tested by

no test coverage detected