Implements the `EqualDouble` opcode.
(&mut self, instr: u32)
| 733 | |
| 734 | /// Implements the `EqualDouble` opcode. |
| 735 | pub(super) fn do_equal_double(&mut self, instr: u32) { |
| 736 | self.do_binary_double_predicate_op(instr, bytecode::parse_equal_double, |l, r| l == r); |
| 737 | } |
| 738 | |
| 739 | /// Implements the `EqualInteger` opcode. |
| 740 | pub(super) fn do_equal_integer(&mut self, instr: u32) { |
no test coverage detected