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

Method do_divide_integer

core/src/vm/context.rs:712–714  ·  view source on GitHub ↗

Implements the `DivideInteger` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

710
711 /// Implements the `DivideInteger` opcode.
712 pub(super) fn do_divide_integer(&mut self, instr: u32) {
713 self.do_binary_integer_op(instr, bytecode::parse_divide_integer, checked_div_integer);
714 }
715
716 /// Implements the `DoubleToInteger` opcode.
717 pub(super) fn do_double_to_integer(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_integer_opMethod · 0.80

Tested by

no test coverage detected