Implements the `LessEqualDouble` opcode.
(&mut self, instr: u32)
| 861 | |
| 862 | /// Implements the `LessEqualDouble` opcode. |
| 863 | pub(super) fn do_less_equal_double(&mut self, instr: u32) { |
| 864 | self.do_binary_double_predicate_op(instr, bytecode::parse_less_equal_double, |l, r| l <= r); |
| 865 | } |
| 866 | |
| 867 | /// Implements the `LessEqualInteger` opcode. |
| 868 | pub(super) fn do_less_equal_integer(&mut self, instr: u32) { |
no test coverage detected