Implements the `LessDouble` opcode.
(&mut self, instr: u32)
| 856 | |
| 857 | /// Implements the `LessDouble` opcode. |
| 858 | pub(super) fn do_less_double(&mut self, instr: u32) { |
| 859 | self.do_binary_double_predicate_op(instr, bytecode::parse_less_double, |l, r| l < r); |
| 860 | } |
| 861 | |
| 862 | /// Implements the `LessEqualDouble` opcode. |
| 863 | pub(super) fn do_less_equal_double(&mut self, instr: u32) { |
no test coverage detected