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

Method low_level_il

python/mediumlevelil.py:652–657  ·  view source on GitHub ↗

Low level IL form of this expression

(self)

Source from the content-addressed store, hash-verified

650
651 @property
652 def low_level_il(self) -> Optional['lowlevelil.LowLevelILInstruction']:
653 """Low level IL form of this expression"""
654 expr = self.function.get_low_level_il_expr_index(self.expr_index)
655 if expr is None or self.function.low_level_il is None:
656 return None
657 return lowlevelil.LowLevelILInstruction.create(self.function.low_level_il.ssa_form, expr, None)
658
659 @property
660 def llil(self) -> Optional['lowlevelil.LowLevelILInstruction']:

Callers

nothing calls this directly

Calls 2

createMethod · 0.45

Tested by

no test coverage detected