Implements the `GreaterEqualDouble` opcode.
(&mut self, instr: u32)
| 782 | |
| 783 | /// Implements the `GreaterEqualDouble` opcode. |
| 784 | pub(super) fn do_greater_equal_double(&mut self, instr: u32) { |
| 785 | self.do_binary_double_predicate_op(instr, bytecode::parse_greater_equal_double, |l, r| { |
| 786 | l >= r |
| 787 | }); |
| 788 | } |
| 789 | |
| 790 | /// Implements the `GreaterEqualInteger` opcode. |
| 791 | pub(super) fn do_greater_equal_integer(&mut self, instr: u32) { |
no test coverage detected