Implements the `GreaterEqualInteger` opcode.
(&mut self, instr: u32)
| 789 | |
| 790 | /// Implements the `GreaterEqualInteger` opcode. |
| 791 | pub(super) fn do_greater_equal_integer(&mut self, instr: u32) { |
| 792 | self.do_binary_integer_predicate_op( |
| 793 | instr, |
| 794 | bytecode::parse_greater_equal_integer, |
| 795 | |l, r| l >= r, |
| 796 | ); |
| 797 | } |
| 798 | |
| 799 | /// Implements the `GreaterEqualText` opcode. |
| 800 | pub(super) fn do_greater_equal_text( |
no test coverage detected