(self)
| 1343 | class HighLevelILVarInitSsa(HighLevelILInstruction, SetVar, SSA): |
| 1344 | @property |
| 1345 | def dest(self) -> 'mediumlevelil.SSAVariable': |
| 1346 | return self.get_var_ssa(0, 1) |
| 1347 | |
| 1348 | @property |
| 1349 | def src(self) -> HighLevelILInstruction: |
nothing calls this directly
no test coverage detected