MCPcopy Index your code
hub / github.com/endbasic/endbasic / do_greater_text

Method do_greater_text

core/src/vm/context.rs:821–823  ·  view source on GitHub ↗

Implements the `GreaterText` opcode.

(&mut self, instr: u32, constants: &[ConstantDatum], heap: &Heap)

Source from the content-addressed store, hash-verified

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) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_text_opMethod · 0.80

Tested by

no test coverage detected