[vala] Fix temp variable declaration in internal VAPI properties
- From: Jürg Billeter <juergbi src gnome org>
- To: svn-commits-list gnome org
- Subject: [vala] Fix temp variable declaration in internal VAPI properties
- Date: Wed, 15 Apr 2009 15:43:18 -0400 (EDT)
commit 4376e84c5c49cd42a022544c302e350c157455af
Author: Jürg Billeter <j bitron ch>
Date: Wed Apr 15 21:41:38 2009 +0200
Fix temp variable declaration in internal VAPI properties
---
gobject/valaccodebasemodule.vala | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/gobject/valaccodebasemodule.vala b/gobject/valaccodebasemodule.vala
index 908b257..6ba6e17 100644
--- a/gobject/valaccodebasemodule.vala
+++ b/gobject/valaccodebasemodule.vala
@@ -1055,13 +1055,19 @@ internal class Vala.CCodeBaseModule : CCodeModule {
check_type (prop.property_type);
int old_next_temp_var_id = next_temp_var_id;
+ var old_temp_vars = temp_vars;
+ var old_temp_ref_vars = temp_ref_vars;
var old_variable_name_map = variable_name_map;
next_temp_var_id = 0;
+ temp_vars = new ArrayList<LocalVariable> ();
+ temp_ref_vars = new ArrayList<LocalVariable> ();
variable_name_map = new HashMap<string,string> (str_hash, str_equal);
prop.accept_children (codegen);
next_temp_var_id = old_next_temp_var_id;
+ temp_vars = old_temp_vars;
+ temp_ref_vars = old_temp_ref_vars;
variable_name_map = old_variable_name_map;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]