(self)
| 1259 | class HighLevelILRet(HighLevelILInstruction, Return): |
| 1260 | @property |
| 1261 | def src(self) -> List[HighLevelILInstruction]: |
| 1262 | return self.get_expr_list(0, 1) |
| 1263 | |
| 1264 | @property |
| 1265 | def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected