From 11c05642fe1e57f87a0a5dbee822c13e45f0f54b Mon Sep 17 00:00:00 2001 From: George Marques Date: Tue, 20 Oct 2020 14:34:14 -0300 Subject: GDScript: Fix handling of scope for local variables --- modules/gdscript/gdscript_compiler.h | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'modules/gdscript/gdscript_compiler.h') diff --git a/modules/gdscript/gdscript_compiler.h b/modules/gdscript/gdscript_compiler.h index db02079d26..fe34d6cba3 100644 --- a/modules/gdscript/gdscript_compiler.h +++ b/modules/gdscript/gdscript_compiler.h @@ -51,12 +51,11 @@ class GDScriptCompiler { GDScriptCodeGenerator *generator = nullptr; Map parameters; Map locals; - List> locals_in_scope; + List> locals_stack; GDScriptCodeGenerator::Address add_local(const StringName &p_name, const GDScriptDataType &p_type) { uint32_t addr = generator->add_local(p_name, p_type); locals[p_name] = GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::LOCAL_VARIABLE, addr, p_type); - locals_in_scope.back()->get().insert(p_name); return locals[p_name]; } @@ -102,17 +101,14 @@ class GDScriptCompiler { } void start_block() { - Set scope; - locals_in_scope.push_back(scope); + Map old_locals = locals; + locals_stack.push_back(old_locals); generator->start_block(); } void end_block() { - Set &scope = locals_in_scope.back()->get(); - for (Set::Element *E = scope.front(); E; E = E->next()) { - locals.erase(E->get()); - } - locals_in_scope.pop_back(); + locals = locals_stack.back()->get(); + locals_stack.pop_back(); generator->end_block(); } }; -- cgit v1.2.3