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

Method do_bitwise_or

core/src/vm/context.rs:668–670  ·  view source on GitHub ↗

Implements the `BitwiseOr` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

666
667 /// Implements the `BitwiseOr` opcode.
668 pub(super) fn do_bitwise_or(&mut self, instr: u32) {
669 self.do_binary_integer_op(instr, bytecode::parse_bitwise_or, checked_or_integer);
670 }
671
672 /// Implements the `BitwiseXor` opcode.
673 pub(super) fn do_bitwise_xor(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_integer_opMethod · 0.80

Tested by

no test coverage detected