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

Method llils

python/mediumlevelil.py:665–672  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

663
664 @property
665 def llils(self) -> List['lowlevelil.LowLevelILInstruction']:
666 exprs = self.function.get_low_level_il_expr_indexes(self.expr_index)
667 if self.function.low_level_il is None:
668 return []
669 result = []
670 for expr in exprs:
671 result.append(lowlevelil.LowLevelILInstruction.create(self.function.low_level_il.ssa_form, expr, None))
672 return result
673
674 @property
675 def high_level_il(self) -> Optional[highlevelil.HighLevelILInstruction]:

Callers

nothing calls this directly

Calls 3

appendMethod · 0.45
createMethod · 0.45

Tested by

no test coverage detected