(self)
| 1876 | class LowLevelILRegStackPush(LowLevelILInstruction, RegisterStack): |
| 1877 | @property |
| 1878 | def stack(self) -> ILRegisterStack: |
| 1879 | return self._get_reg_stack(0) |
| 1880 | |
| 1881 | @property |
| 1882 | def src(self) -> LowLevelILInstruction: |
nothing calls this directly
no test coverage detected