Implements the `LessEqualInteger` opcode.
(&mut self, instr: u32)
| 866 | |
| 867 | /// Implements the `LessEqualInteger` opcode. |
| 868 | pub(super) fn do_less_equal_integer(&mut self, instr: u32) { |
| 869 | self.do_binary_integer_predicate_op(instr, bytecode::parse_less_equal_integer, |l, r| { |
| 870 | l <= r |
| 871 | }); |
| 872 | } |
| 873 | |
| 874 | /// Implements the `LessEqualText` opcode. |
| 875 | pub(super) fn do_less_equal_text( |
no test coverage detected