Implements the `ShiftLeft` opcode.
(&mut self, instr: u32)
| 1085 | |
| 1086 | /// Implements the `ShiftLeft` opcode. |
| 1087 | pub(super) fn do_shift_left(&mut self, instr: u32) { |
| 1088 | self.do_binary_integer_op(instr, bytecode::parse_shift_left, checked_shl_integer); |
| 1089 | } |
| 1090 | |
| 1091 | /// Implements the `ShiftRight` opcode. |
| 1092 | pub(super) fn do_shift_right(&mut self, instr: u32) { |
no test coverage detected