(self)
| 1757 | class LowLevelILRegSsa(LowLevelILInstruction, SSA): |
| 1758 | @property |
| 1759 | def src(self) -> SSARegister: |
| 1760 | return self._get_reg_ssa(0, 1) |
| 1761 | |
| 1762 | @property |
| 1763 | def detailed_operands(self) -> List[Tuple[str, LowLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected