(&self)
| 1389 | } |
| 1390 | |
| 1391 | pub fn mem_expr(&self) -> LowLevelILExpression<'func, A, M, F, ValueExpr> { |
| 1392 | LowLevelILExpression::new( |
| 1393 | self.function, |
| 1394 | LowLevelExpressionIndex(self.op.operands[0] as usize), |
| 1395 | ) |
| 1396 | } |
| 1397 | } |
| 1398 | |
| 1399 | impl<A, M, F> Debug for Operation<'_, A, M, F, UnimplMem> |
no test coverage detected