Implements the `NotEqualText` opcode.
(
&mut self,
instr: u32,
constants: &[ConstantDatum],
heap: &Heap,
)
| 1004 | |
| 1005 | /// Implements the `NotEqualText` opcode. |
| 1006 | pub(super) fn do_not_equal_text( |
| 1007 | &mut self, |
| 1008 | instr: u32, |
| 1009 | constants: &[ConstantDatum], |
| 1010 | heap: &Heap, |
| 1011 | ) { |
| 1012 | self.do_binary_text_op(instr, constants, heap, bytecode::parse_not_equal_text, |l, r| { |
| 1013 | l != r |
| 1014 | }); |
| 1015 | } |
| 1016 | |
| 1017 | /// Implements the `Nop` opcode. |
| 1018 | pub(super) fn do_nop(&mut self, instr: u32) { |