(self)
| 1739 | class LowLevelILRegStackDestSsa(LowLevelILInstruction, RegisterStack, SSA): |
| 1740 | @property |
| 1741 | def dest(self) -> SSARegisterStack: |
| 1742 | return self._get_reg_stack_ssa(0, 1) |
| 1743 | |
| 1744 | @property |
| 1745 | def src(self) -> SSARegisterStack: |
nothing calls this directly
no test coverage detected