[vala] codegen: Call visit_local_variable on the foreach collection variable
- From: Luca Bruno <lucabru src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala] codegen: Call visit_local_variable on the foreach collection variable
- Date: Thu, 28 Apr 2011 12:03:59 +0000 (UTC)
commit b0158525d8e77598aa9f157c2c37e5446938db4f
Author: Luca Bruno <lucabru src gnome org>
Date: Thu Apr 28 11:40:46 2011 +0200
codegen: Call visit_local_variable on the foreach collection variable
codegen/valaccodecontrolflowmodule.vala | 12 +-----------
1 files changed, 1 insertions(+), 11 deletions(-)
---
diff --git a/codegen/valaccodecontrolflowmodule.vala b/codegen/valaccodecontrolflowmodule.vala
index 70f7a5a..7c890e0 100644
--- a/codegen/valaccodecontrolflowmodule.vala
+++ b/codegen/valaccodecontrolflowmodule.vala
@@ -230,12 +230,7 @@ public abstract class Vala.CCodeControlFlowModule : CCodeMethodModule {
array_type.fixed_length = false;
}
- if (is_in_coroutine ()) {
- closure_struct.add_field (collection_type.get_cname (), collection_backup.name);
- } else {
- var ccolvardecl = new CCodeVariableDeclarator (collection_backup.name);
- ccode.add_declaration (collection_type.get_cname (), ccolvardecl);
- }
+ visit_local_variable (collection_backup);
ccode.add_assignment (get_variable_cexpression (collection_backup.name), get_cvalue (stmt.collection));
if (stmt.tree_can_fail && stmt.collection.tree_can_fail) {
@@ -249,11 +244,6 @@ public abstract class Vala.CCodeControlFlowModule : CCodeMethodModule {
var array_len = get_array_length_cexpression (stmt.collection);
// store array length for use by _vala_array_free
- if (is_in_coroutine ()) {
- closure_struct.add_field ("int", get_array_length_cname (collection_backup.name, 1));
- } else {
- ccode.add_declaration ("int", new CCodeVariableDeclarator (get_array_length_cname (collection_backup.name, 1)));
- }
ccode.add_assignment (get_variable_cexpression (get_array_length_cname (collection_backup.name, 1)), array_len);
var it_name = (stmt.variable_name + "_it");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]