MCPcopy Create free account
hub / github.com/endbasic/endbasic / do_equal_boolean

Method do_equal_boolean

core/src/vm/context.rs:730–732  ·  view source on GitHub ↗

Implements the `EqualBoolean` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

728
729 /// Implements the `EqualBoolean` opcode.
730 pub(super) fn do_equal_boolean(&mut self, instr: u32) {
731 self.do_binary_boolean_op(instr, bytecode::parse_equal_boolean, |l, r| l == r);
732 }
733
734 /// Implements the `EqualDouble` opcode.
735 pub(super) fn do_equal_double(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_boolean_opMethod · 0.80

Tested by

no test coverage detected