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

Method do_less_text

core/src/vm/context.rs:892–894  ·  view source on GitHub ↗

Implements the `LessText` opcode.

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

Source from the content-addressed store, hash-verified

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

Callers 1

execMethod · 0.80

Calls 1

do_binary_text_opMethod · 0.80

Tested by

no test coverage detected