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

Method do_subtract_integer

core/src/vm/context.rs:1117–1119  ·  view source on GitHub ↗

Implements the `SubtractInteger` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

1115
1116 /// Implements the `SubtractInteger` opcode.
1117 pub(super) fn do_subtract_integer(&mut self, instr: u32) {
1118 self.do_binary_integer_op(instr, bytecode::parse_subtract_integer, checked_sub_integer);
1119 }
1120
1121 /// Implements the `Upcall` opcode.
1122 pub(super) fn do_upcall(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_integer_opMethod · 0.80

Tested by

no test coverage detected