Implements the `NotEqualInteger` opcode.
(&mut self, instr: u32)
| 997 | |
| 998 | /// Implements the `NotEqualInteger` opcode. |
| 999 | pub(super) fn do_not_equal_integer(&mut self, instr: u32) { |
| 1000 | self.do_binary_integer_predicate_op(instr, bytecode::parse_not_equal_integer, |l, r| { |
| 1001 | l != r |
| 1002 | }); |
| 1003 | } |
| 1004 | |
| 1005 | /// Implements the `NotEqualText` opcode. |
| 1006 | pub(super) fn do_not_equal_text( |
no test coverage detected