Implements the `GreaterDouble` opcode.
(&mut self, instr: u32)
| 777 | |
| 778 | /// Implements the `GreaterDouble` opcode. |
| 779 | pub(super) fn do_greater_double(&mut self, instr: u32) { |
| 780 | self.do_binary_double_predicate_op(instr, bytecode::parse_greater_double, |l, r| l > r); |
| 781 | } |
| 782 | |
| 783 | /// Implements the `GreaterEqualDouble` opcode. |
| 784 | pub(super) fn do_greater_equal_double(&mut self, instr: u32) { |
no test coverage detected