Implements the `BitwiseOr` opcode.
(&mut self, instr: u32)
| 666 | |
| 667 | /// Implements the `BitwiseOr` opcode. |
| 668 | pub(super) fn do_bitwise_or(&mut self, instr: u32) { |
| 669 | self.do_binary_integer_op(instr, bytecode::parse_bitwise_or, checked_or_integer); |
| 670 | } |
| 671 | |
| 672 | /// Implements the `BitwiseXor` opcode. |
| 673 | pub(super) fn do_bitwise_xor(&mut self, instr: u32) { |
no test coverage detected