Implements the `SubtractDouble` opcode.
(&mut self, instr: u32)
| 1110 | |
| 1111 | /// Implements the `SubtractDouble` opcode. |
| 1112 | pub(super) fn do_subtract_double(&mut self, instr: u32) { |
| 1113 | self.do_binary_double_op(instr, bytecode::parse_subtract_double, |l, r| l - r); |
| 1114 | } |
| 1115 | |
| 1116 | /// Implements the `SubtractInteger` opcode. |
| 1117 | pub(super) fn do_subtract_integer(&mut self, instr: u32) { |
no test coverage detected