(&self)
| 191 | } |
| 192 | |
| 193 | pub fn source_expr(&self) -> LowLevelILExpression<'func, A, M, F, ValueExpr> { |
| 194 | LowLevelILExpression::new( |
| 195 | self.function, |
| 196 | LowLevelExpressionIndex(self.op.operands[1] as usize), |
| 197 | ) |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | impl<A, M, F> Debug for Operation<'_, A, M, F, SetReg> |
no test coverage detected