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

Method do_less_equal_integer

core/src/vm/context.rs:868–872  ·  view source on GitHub ↗

Implements the `LessEqualInteger` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

866
867 /// Implements the `LessEqualInteger` opcode.
868 pub(super) fn do_less_equal_integer(&mut self, instr: u32) {
869 self.do_binary_integer_predicate_op(instr, bytecode::parse_less_equal_integer, |l, r| {
870 l <= r
871 });
872 }
873
874 /// Implements the `LessEqualText` opcode.
875 pub(super) fn do_less_equal_text(

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected