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

Method do_bitwise_xor

core/src/vm/context.rs:673–675  ·  view source on GitHub ↗

Implements the `BitwiseXor` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

671
672 /// Implements the `BitwiseXor` opcode.
673 pub(super) fn do_bitwise_xor(&mut self, instr: u32) {
674 self.do_binary_integer_op(instr, bytecode::parse_bitwise_xor, checked_xor_integer);
675 }
676
677 /// Implements the `Call` opcode.
678 pub(super) fn do_call(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_integer_opMethod · 0.80

Tested by

no test coverage detected