(self)
| 1612 | class LowLevelILRegStackPop(LowLevelILInstruction, RegisterStack): |
| 1613 | @property |
| 1614 | def stack(self) -> ILRegisterStack: |
| 1615 | return self._get_reg_stack(0) |
| 1616 | |
| 1617 | @property |
| 1618 | def detailed_operands(self) -> List[Tuple[str, LowLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected