Implements the `AddInteger` opcode.
(&mut self, instr: u32)
| 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) { |
no test coverage detected