Implements the `EqualBoolean` opcode.
(&mut self, instr: u32)
| 728 | |
| 729 | /// Implements the `EqualBoolean` opcode. |
| 730 | pub(super) fn do_equal_boolean(&mut self, instr: u32) { |
| 731 | self.do_binary_boolean_op(instr, bytecode::parse_equal_boolean, |l, r| l == r); |
| 732 | } |
| 733 | |
| 734 | /// Implements the `EqualDouble` opcode. |
| 735 | pub(super) fn do_equal_double(&mut self, instr: u32) { |
no test coverage detected