Implements the `LessText` opcode.
(&mut self, instr: u32, constants: &[ConstantDatum], heap: &Heap)
| 890 | |
| 891 | /// Implements the `LessText` opcode. |
| 892 | pub(super) fn do_less_text(&mut self, instr: u32, constants: &[ConstantDatum], heap: &Heap) { |
| 893 | self.do_binary_text_op(instr, constants, heap, bytecode::parse_less_text, |l, r| l < r); |
| 894 | } |
| 895 | |
| 896 | /// Implements the `LoadArray` opcode. |
| 897 | pub(super) fn do_load_array(&mut self, instr: u32, heap: &Heap) { |