(self)
| 2828 | class LowLevelILRegStackRelSsa(LowLevelILInstruction, RegisterStack, SSA): |
| 2829 | @property |
| 2830 | def stack(self) -> SSARegisterStack: |
| 2831 | return self._get_reg_stack_ssa(0, 1) |
| 2832 | |
| 2833 | @property |
| 2834 | def src(self) -> LowLevelILInstruction: |
nothing calls this directly
no test coverage detected