Implements the `EqualInteger` opcode.
(&mut self, instr: u32)
| 738 | |
| 739 | /// Implements the `EqualInteger` opcode. |
| 740 | pub(super) fn do_equal_integer(&mut self, instr: u32) { |
| 741 | self.do_binary_integer_predicate_op(instr, bytecode::parse_equal_integer, |l, r| l == r); |
| 742 | } |
| 743 | |
| 744 | /// Implements the `EqualText` opcode. |
| 745 | pub(super) fn do_equal_text(&mut self, instr: u32, constants: &[ConstantDatum], heap: &Heap) { |
no test coverage detected