(self)
| 2072 | class MediumLevelILSetVarSsa(MediumLevelILInstruction, SetVar, SSA): |
| 2073 | @property |
| 2074 | def dest(self) -> SSAVariable: |
| 2075 | return self._get_var_ssa(0, 1) |
| 2076 | |
| 2077 | @property |
| 2078 | def src(self) -> MediumLevelILInstruction: |
nothing calls this directly
no test coverage detected