diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-04-28 16:44:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 16:44:59 +0200 |
commit | f505a2679808ddb95a552d9ad8ce9a0f9aa3b285 (patch) | |
tree | 87e54337831be88c37e0c252c57f9a466b8fe2c6 /modules/gdscript/gdscript_disassembler.cpp | |
parent | 4ea73633047e5b52dee38ffe0b958f60e859d5b7 (diff) | |
parent | 9ed0f0384cd73921f2c85d1e030fbb596b0954ea (diff) |
Merge pull request #47454 from vnen/gdscript-lambda
Diffstat (limited to 'modules/gdscript/gdscript_disassembler.cpp')
-rw-r--r-- | modules/gdscript/gdscript_disassembler.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_disassembler.cpp b/modules/gdscript/gdscript_disassembler.cpp index 0d0afcc741..789af57b4c 100644 --- a/modules/gdscript/gdscript_disassembler.cpp +++ b/modules/gdscript/gdscript_disassembler.cpp @@ -721,7 +721,7 @@ void GDScriptFunction::disassemble(const Vector<String> &p_code_lines) const { text += "await "; text += DADDR(1); - incr += 2; + incr = 2; } break; case OPCODE_AWAIT_RESUME: { text += "await resume "; @@ -729,6 +729,25 @@ void GDScriptFunction::disassemble(const Vector<String> &p_code_lines) const { incr = 2; } break; + case OPCODE_CREATE_LAMBDA: { + int captures_count = _code_ptr[ip + 1 + instr_var_args]; + GDScriptFunction *lambda = _lambdas_ptr[_code_ptr[ip + 2 + instr_var_args]]; + + text += DADDR(1 + captures_count); + text += "create lambda from "; + text += lambda->name.operator String(); + text += "function, captures ("; + + for (int i = 0; i < captures_count; i++) { + if (i > 0) { + text += ", "; + } + text += DADDR(1 + i); + } + text += ")"; + + incr = 3 + captures_count; + } break; case OPCODE_JUMP: { text += "jump "; text += itos(_code_ptr[ip + 1]); |