MCPcopy Index your code
hub / github.com/endbasic/endbasic / do_shift_left

Method do_shift_left

core/src/vm/context.rs:1087–1089  ·  view source on GitHub ↗

Implements the `ShiftLeft` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

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) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_integer_opMethod · 0.80

Tested by

no test coverage detected