(self)
| 1585 | class MediumLevelILVarAliased(MediumLevelILInstruction, SSA, AliasedVariableInstruction): |
| 1586 | @property |
| 1587 | def src(self) -> SSAVariable: |
| 1588 | return self._get_var_ssa(0, 1) |
| 1589 | |
| 1590 | @property |
| 1591 | def detailed_operands(self) -> List[Tuple[str, MediumLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected