| 894 | } |
| 895 | |
| 896 | void GDScriptByteCodeGenerator::write_get_member(const Address &p_target, const StringName &p_name) { |
| 897 | append_opcode(GDScriptFunction::OPCODE_GET_MEMBER); |
| 898 | append(p_target); |
| 899 | append(p_name); |
| 900 | } |
| 901 | |
| 902 | void GDScriptByteCodeGenerator::write_set_static_variable(const Address &p_value, const Address &p_class, int p_index) { |
| 903 | append_opcode(GDScriptFunction::OPCODE_SET_STATIC_VARIABLE); |