[vala/wip/transform: 58/100] codegen: Fix capture of compiler-generated internal temp variables
- From: Luca Bruno <lucabru src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/transform: 58/100] codegen: Fix capture of compiler-generated internal temp variables
- Date: Sun, 9 Feb 2014 10:45:48 +0000 (UTC)
commit 5fd9cdb6de6c4d9355452de45975778e2125ee7e
Author: Luca Bruno <lucabru src gnome org>
Date: Mon Oct 22 16:12:31 2012 +0200
codegen: Fix capture of compiler-generated internal temp variables
Make variable_name_map be global instead of per EmitContext.
codegen/valaccodebasemodule.vala | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/codegen/valaccodebasemodule.vala b/codegen/valaccodebasemodule.vala
index bf20b48..2d68481 100644
--- a/codegen/valaccodebasemodule.vala
+++ b/codegen/valaccodebasemodule.vala
@@ -38,7 +38,6 @@ public abstract class Vala.CCodeBaseModule : CodeGenerator {
public int next_temp_var_id;
public bool current_method_inner_error;
public bool current_method_return;
- public Map<string,string> variable_name_map = new HashMap<string,string> (str_hash,
str_equal);
public Map<string,int> closure_variable_count_map = new HashMap<string,int> (str_hash,
str_equal);
public Map<LocalVariable,int> closure_variable_clash_map = new HashMap<LocalVariable,int> ();
@@ -335,7 +334,7 @@ public abstract class Vala.CCodeBaseModule : CodeGenerator {
public Set<string> wrappers;
Set<Symbol> generated_external_symbols;
- public Map<string,string> variable_name_map { get { return emit_context.variable_name_map; } }
+ public Map<string,string> variable_name_map = new HashMap<string,string> (str_hash, str_equal);
public static int ccode_attribute_cache_index = CodeNode.get_attribute_cache_index ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]