(self)
| 2335 | class LowLevelILRegStackAbsSsa(LowLevelILInstruction, RegisterStack, SSA): |
| 2336 | @property |
| 2337 | def stack(self) -> SSARegisterStack: |
| 2338 | return self._get_reg_stack_ssa(0, 1) |
| 2339 | |
| 2340 | @property |
| 2341 | def src(self) -> ILRegister: |
nothing calls this directly
no test coverage detected