(&self)
| 1170 | } |
| 1171 | |
| 1172 | pub fn right(&self) -> LowLevelILExpression<'func, A, M, F, ValueExpr> { |
| 1173 | LowLevelILExpression::new( |
| 1174 | self.function, |
| 1175 | LowLevelExpressionIndex(self.op.operands[1] as usize), |
| 1176 | ) |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | impl<A, M, F> Debug for Operation<'_, A, M, F, BinaryOp> |
no test coverage detected