Gets the mapped medium level IL expression corresponding to this expression
(self)
| 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']: |
nothing calls this directly
no test coverage detected