Implements the `ShiftRight` opcode.
(&mut self, instr: u32)
| 1090 | |
| 1091 | /// Implements the `ShiftRight` opcode. |
| 1092 | pub(super) fn do_shift_right(&mut self, instr: u32) { |
| 1093 | self.do_binary_integer_op(instr, bytecode::parse_shift_right, checked_shr_integer); |
| 1094 | } |
| 1095 | |
| 1096 | /// Implements the `StoreArray` opcode. |
| 1097 | pub(super) fn do_store_array(&mut self, instr: u32, heap: &mut Heap) { |
no test coverage detected