(self)
| 2028 | class MediumLevelILVarPhi(MediumLevelILInstruction, SetVar, Phi, SSA): |
| 2029 | @property |
| 2030 | def dest(self) -> SSAVariable: |
| 2031 | return self._get_var_ssa(0, 1) |
| 2032 | |
| 2033 | @property |
| 2034 | def src(self) -> List[SSAVariable]: |
nothing calls this directly
no test coverage detected