Implements the `GreaterText` opcode.
(&mut self, instr: u32, constants: &[ConstantDatum], heap: &Heap)
| 819 | |
| 820 | /// Implements the `GreaterText` opcode. |
| 821 | pub(super) fn do_greater_text(&mut self, instr: u32, constants: &[ConstantDatum], heap: &Heap) { |
| 822 | self.do_binary_text_op(instr, constants, heap, bytecode::parse_greater_text, |l, r| l > r); |
| 823 | } |
| 824 | |
| 825 | /// Implements the `IntegerToDouble` opcode. |
| 826 | pub(super) fn do_integer_to_double(&mut self, instr: u32) { |