Implements the `BitwiseXor` opcode.
(&mut self, instr: u32)
| 671 | |
| 672 | /// Implements the `BitwiseXor` opcode. |
| 673 | pub(super) fn do_bitwise_xor(&mut self, instr: u32) { |
| 674 | self.do_binary_integer_op(instr, bytecode::parse_bitwise_xor, checked_xor_integer); |
| 675 | } |
| 676 | |
| 677 | /// Implements the `Call` opcode. |
| 678 | pub(super) fn do_call(&mut self, instr: u32) { |
no test coverage detected