MCPcopy Create free account
hub / github.com/endbasic/endbasic / do_shift_right

Method do_shift_right

core/src/vm/context.rs:1092–1094  ·  view source on GitHub ↗

Implements the `ShiftRight` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

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

Callers 1

execMethod · 0.80

Calls 1

do_binary_integer_opMethod · 0.80

Tested by

no test coverage detected