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

Method mlils

python/lowlevelil.py:662–666  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

660
661 @property
662 def mlils(self) -> List['mediumlevelil.MediumLevelILInstruction']:
663 result = []
664 for expr in self.function.get_medium_level_il_expr_indexes(self.expr_index):
665 result.append(mediumlevelil.MediumLevelILInstruction.create(self.function.medium_level_il, expr))
666 return result
667
668 @property
669 def mapped_medium_level_il(self) -> Optional['mediumlevelil.MediumLevelILInstruction']:

Callers

nothing calls this directly

Calls 3

appendMethod · 0.45
createMethod · 0.45

Tested by

no test coverage detected