(self)
| 1570 | class MediumLevelILVarSsa(MediumLevelILInstruction, SSAVariableInstruction): |
| 1571 | @property |
| 1572 | def src(self) -> SSAVariable: |
| 1573 | return self._get_var_ssa(0, 1) |
| 1574 | |
| 1575 | @property |
| 1576 | def var(self) -> SSAVariable: |
nothing calls this directly
no test coverage detected