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

Method do_equal_integer

core/src/vm/context.rs:740–742  ·  view source on GitHub ↗

Implements the `EqualInteger` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

738
739 /// Implements the `EqualInteger` opcode.
740 pub(super) fn do_equal_integer(&mut self, instr: u32) {
741 self.do_binary_integer_predicate_op(instr, bytecode::parse_equal_integer, |l, r| l == r);
742 }
743
744 /// Implements the `EqualText` opcode.
745 pub(super) fn do_equal_text(&mut self, instr: u32, constants: &[ConstantDatum], heap: &Heap) {

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected