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

Method do_not_equal_text

core/src/vm/context.rs:1006–1015  ·  view source on GitHub ↗

Implements the `NotEqualText` opcode.

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

Source from the content-addressed store, hash-verified

1004
1005 /// Implements the `NotEqualText` opcode.
1006 pub(super) fn do_not_equal_text(
1007 &mut self,
1008 instr: u32,
1009 constants: &[ConstantDatum],
1010 heap: &Heap,
1011 ) {
1012 self.do_binary_text_op(instr, constants, heap, bytecode::parse_not_equal_text, |l, r| {
1013 l != r
1014 });
1015 }
1016
1017 /// Implements the `Nop` opcode.
1018 pub(super) fn do_nop(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_text_opMethod · 0.80

Tested by

no test coverage detected