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

Method do_multiply_integer

core/src/vm/context.rs:961–963  ·  view source on GitHub ↗

Implements the `MultiplyInteger` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

959
960 /// Implements the `MultiplyInteger` opcode.
961 pub(super) fn do_multiply_integer(&mut self, instr: u32) {
962 self.do_binary_integer_op(instr, bytecode::parse_multiply_integer, checked_mul_integer);
963 }
964
965 /// Implements the `NegateDouble` opcode.
966 pub(super) fn do_negate_double(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_integer_opMethod · 0.80

Tested by

no test coverage detected