Implements the `NotEqualDouble` opcode.
(&mut self, instr: u32)
| 992 | |
| 993 | /// Implements the `NotEqualDouble` opcode. |
| 994 | pub(super) fn do_not_equal_double(&mut self, instr: u32) { |
| 995 | self.do_binary_double_predicate_op(instr, bytecode::parse_not_equal_double, |l, r| l != r); |
| 996 | } |
| 997 | |
| 998 | /// Implements the `NotEqualInteger` opcode. |
| 999 | pub(super) fn do_not_equal_integer(&mut self, instr: u32) { |
no test coverage detected