(self)
| 1502 | class HighLevelILVarPhi(HighLevelILInstruction, Phi, SetVar): |
| 1503 | @property |
| 1504 | def dest(self) -> 'mediumlevelil.SSAVariable': |
| 1505 | return self.get_var_ssa(0, 1) |
| 1506 | |
| 1507 | @property |
| 1508 | def src(self) -> List['mediumlevelil.SSAVariable']: |
nothing calls this directly
no test coverage detected