(self)
| 3056 | class LowLevelILAssertSsa(LowLevelILInstruction, SSA): |
| 3057 | @property |
| 3058 | def src(self) -> SSARegister: |
| 3059 | return self._get_reg_ssa(0, 1) |
| 3060 | |
| 3061 | @property |
| 3062 | def constraint(self) -> variable.PossibleValueSet: |
nothing calls this directly
no test coverage detected