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

Method mapped_medium_level_il

python/lowlevelil.py:669–674  ·  view source on GitHub ↗

Gets the mapped medium level IL expression corresponding to this expression

(self)

Source from the content-addressed store, hash-verified

667
668 @property
669 def mapped_medium_level_il(self) -> Optional['mediumlevelil.MediumLevelILInstruction']:
670 """Gets the mapped medium level IL expression corresponding to this expression"""
671 expr = self.function.get_mapped_medium_level_il_expr_index(self.expr_index)
672 if expr is None:
673 return None
674 return mediumlevelil.MediumLevelILInstruction.create(self.function.mapped_medium_level_il, expr)
675
676 @property
677 def mmlil(self) -> Optional['mediumlevelil.MediumLevelILInstruction']:

Callers

nothing calls this directly

Calls 2

createMethod · 0.45

Tested by

no test coverage detected