| 729 | } |
| 730 | |
| 731 | void GDScriptByteCodeGenerator::write_or_left_operand(const Address &p_left_operand) { |
| 732 | append_opcode(GDScriptFunction::OPCODE_JUMP_IF); |
| 733 | append(p_left_operand); |
| 734 | logic_op_jump_pos1.push_back(opcodes.size()); |
| 735 | append(0); // Jump target, will be patched. |
| 736 | } |
| 737 | |
| 738 | void GDScriptByteCodeGenerator::write_or_right_operand(const Address &p_right_operand) { |
| 739 | append_opcode(GDScriptFunction::OPCODE_JUMP_IF); |
no test coverage detected