(self)
| 1378 | class MediumLevelILCallOutput(MediumLevelILInstruction): |
| 1379 | @property |
| 1380 | def dest(self) -> List[variable.Variable]: |
| 1381 | return self._get_var_list(0, 1) |
| 1382 | |
| 1383 | @property |
| 1384 | def detailed_operands(self) -> List[Tuple[str, MediumLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected