Implements the `BitwiseAnd` opcode.
(&mut self, instr: u32)
| 653 | |
| 654 | /// Implements the `BitwiseAnd` opcode. |
| 655 | pub(super) fn do_bitwise_and(&mut self, instr: u32) { |
| 656 | self.do_binary_integer_op(instr, bytecode::parse_bitwise_and, checked_and_integer); |
| 657 | } |
| 658 | |
| 659 | /// Implements the `BitwiseNot` opcode. |
| 660 | pub(super) fn do_bitwise_not(&mut self, instr: u32) { |
no test coverage detected