(self)
| 1436 | class MediumLevelILRet(MediumLevelILInstruction, Return): |
| 1437 | @property |
| 1438 | def src(self) -> List[MediumLevelILInstruction]: |
| 1439 | return self._get_expr_list(0, 1) |
| 1440 | |
| 1441 | @property |
| 1442 | def detailed_operands(self) -> List[Tuple[str, MediumLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected