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

Method do_add_integer

core/src/vm/context.rs:602–604  ·  view source on GitHub ↗

Implements the `AddInteger` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

600
601 /// Implements the `AddInteger` opcode.
602 pub(super) fn do_add_integer(&mut self, instr: u32) {
603 self.do_binary_integer_op(instr, bytecode::parse_add_integer, checked_add_integer);
604 }
605
606 /// Implements the `Alloc` opcode.
607 pub(super) fn do_alloc(&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