(&self)
| 349 | } |
| 350 | |
| 351 | pub fn source_mem_expr(&self) -> LowLevelILExpression<'func, A, M, F, ValueExpr> { |
| 352 | LowLevelILExpression::new( |
| 353 | self.function, |
| 354 | LowLevelExpressionIndex(self.op.operands[0] as usize), |
| 355 | ) |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | impl<A, M, F> Debug for Operation<'_, A, M, F, Load> |
no test coverage detected