2007-06-20 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / mcs / statement.cs
index a761be19185587966ddf546a64cc882feb6b0b86..207cf7bdc70a3094169c02bd3ad59728084d6a15 100644 (file)
@@ -1243,7 +1243,7 @@ namespace Mono.CSharp {
                public bool Resolve (EmitContext ec)
                {
                        if (VariableType == null) {
-                               TypeExpr texpr = Type.ResolveAsTypeTerminal (ec, false);
+                               TypeExpr texpr = Type.ResolveAsContextualType (ec, false);
                                if (texpr == null)
                                        return false;
                                
@@ -1698,7 +1698,7 @@ namespace Mono.CSharp {
                        // an indirect check that depends on AddVariable doing its
                        // part in maintaining the invariant-meaning-in-block property.
                        //
-                       if (e is LocalVariableReference || (e is Constant && b.GetLocalInfo (name) != null))
+                       if (e is VariableReference || (e is Constant && b.GetLocalInfo (name) != null))
                                return true;
 
                        //
@@ -1710,95 +1710,6 @@ namespace Mono.CSharp {
                        return false;
                }
 
-               public bool CheckError136_InParents (string name, Location loc)
-               {
-                       for (Block b = Parent; b != null; b = b.Parent) {
-                               if (!b.DoCheckError136 (name, "parent or current", loc))
-                                       return false;
-                       }
-
-                       for (Block b = Toplevel.Parent; b != null; b = b.Toplevel.Parent) {
-                               if (!b.CheckError136_InParents (name, loc))
-                                       return false;
-                       }
-
-                       return true;
-               }
-
-               public bool CheckError136_InChildren (string name, Location loc)
-               {
-                       if (!DoCheckError136_InChildren (name, loc))
-                               return false;
-
-                       Block b = this;
-                       while (b != Explicit) {
-                               if (!b.Parent.DoCheckError136_InChildren (name, loc))
-                                       return false;
-                               b = b.Parent;
-                       }
-
-                       return true;
-               }
-
-               protected bool DoCheckError136_InChildren (string name, Location loc)
-               {
-                       if (!DoCheckError136 (name, "child", loc))
-                               return false;
-
-                       if (AnonymousChildren != null) {
-                               foreach (ToplevelBlock child in AnonymousChildren) {
-                                       if (!child.DoCheckError136_InChildren (name, loc))
-                                               return false;
-                               }
-                       }
-
-                       if (children != null) {
-                               foreach (Block child in children) {
-                                       if (!child.DoCheckError136_InChildren (name, loc))
-                                               return false;
-                               }
-                       }
-
-                       return true;
-               }
-
-               public bool CheckError136 (string name, string scope, bool check_parents,
-                                          bool check_children, Location loc)
-               {
-                       if (!DoCheckError136 (name, scope, loc))
-                               return false;
-
-                       if (check_parents) {
-                               if (!CheckError136_InParents (name, loc))
-                                       return false;
-                       }
-
-                       if (check_children) {
-                               if (!CheckError136_InChildren (name, loc))
-                                       return false;
-                       }
-
-                       for (Block c = Toplevel.Parent; c != null; c = c.Toplevel.Parent) {
-                               if (!c.DoCheckError136 (name, "parent or current", loc))
-                                       return false;
-                       }
-
-                       return true;
-               }
-
-               protected bool DoCheckError136 (string name, string scope, Location loc)
-               {
-                       int idx;
-                       Parameter p = Toplevel.Parameters.GetParameterByName (name, out idx);
-                       if (p != null) {
-                               Report.SymbolRelatedToPreviousError (p.Location, name);
-                               Error_AlreadyDeclared (loc, name, scope != null ? scope : "method argument");
-                               return false;
-                       }
-
-                       return true;
-               }
-
                public LocalInfo AddVariable (Expression type, string name, Location l)
                {
                        LocalInfo vi = GetLocalInfo (name);
@@ -1812,6 +1723,13 @@ namespace Mono.CSharp {
                                return null;
                        }
 
+                       ToplevelParameterInfo pi = Toplevel.GetParameterInfo (name);
+                       if (pi != null) {
+                               Report.SymbolRelatedToPreviousError (pi.Location, name);
+                               Error_AlreadyDeclared (loc, name,
+                                       pi.Block == Toplevel ? "method argument" : "parent or current");
+                       }
+
                        IKnownVariable kvi = Explicit.GetKnownVariable (name);
                        if (kvi != null) {
                                Report.SymbolRelatedToPreviousError (kvi.Location, name);
@@ -1819,11 +1737,6 @@ namespace Mono.CSharp {
                                return null;
                        }
 
-                       // FIXME: Parameters should be tracked by KnownVariable
-                       //        This ^%@$%@@#^#%* UGLY recursion needs to be stomped out
-                       if (!CheckError136 (name, null, true, true, l))
-                               return null;
-
                        vi = new LocalInfo (type, name, this, l);
                        Variables.Add (name, vi);
                        Explicit.AddKnownVariable (name, vi);
@@ -2387,25 +2300,34 @@ namespace Mono.CSharp {
                {
                        return known_variables == null ? null : (IKnownVariable) known_variables [name];
                }
+
+               protected override void CloneTo (CloneContext clonectx, Statement t)
+               {
+                       ExplicitBlock target = (ExplicitBlock) t;
+                       target.known_variables = null;
+                       base.CloneTo (clonectx, t);
+               }
        }
 
        public class ToplevelParameterInfo : IKnownVariable {
-               ToplevelBlock block;
-               int idx;
+               public readonly ToplevelBlock Block;
+               public readonly int Index;
                public VariableInfo VariableInfo;
 
-               public Block Block {
-                       get { return block; }
+               Block IKnownVariable.Block {
+                       get { return Block; }
+               }
+               public Parameter Parameter {
+                       get { return Block.Parameters [Index]; }
                }
-
                public Location Location {
-                       get { return block.Parameters [idx].Location; }
+                       get { return Parameter.Location; }
                }
 
                public ToplevelParameterInfo (ToplevelBlock block, int idx)
                {
-                       this.block = block;
-                       this.idx = idx;
+                       this.Block = block;
+                       this.Index = idx;
                }
        }
 
@@ -2508,12 +2430,26 @@ namespace Mono.CSharp {
                        this.Parent = parent;
                        if (parent != null)
                                parent.AddAnonymousChild (this);
+
+                       if (this.parameters.Count != 0)
+                               ProcessParameters ();
                }
 
                public ToplevelBlock (Location loc) : this (null, (Flags) 0, null, loc)
                {
                }
 
+               protected override void CloneTo (CloneContext clonectx, Statement t)
+               {
+                       ToplevelBlock target = (ToplevelBlock) t;
+                       base.CloneTo (clonectx, t);
+
+                       if (parameters.Count != 0)
+                               target.parameter_info = new ToplevelParameterInfo [parameters.Count];
+                       for (int i = 0; i < parameters.Count; ++i)
+                               target.parameter_info [i] = new ToplevelParameterInfo (target, i);
+               }
+
                public bool CheckError158 (string name, Location loc)
                {
                        if (AnonymousChildren != null) {
@@ -2531,6 +2467,38 @@ namespace Mono.CSharp {
                        return true;
                }
 
+               ToplevelParameterInfo [] parameter_info;
+               void ProcessParameters ()
+               {
+                       int n = parameters.Count;
+                       parameter_info = new ToplevelParameterInfo [n];
+                       for (int i = 0; i < n; ++i) {
+                               parameter_info [i] = new ToplevelParameterInfo (this, i);
+
+                               string name = parameters [i].Name;
+
+                               LocalInfo vi = GetLocalInfo (name);
+                               if (vi != null) {
+                                       Report.SymbolRelatedToPreviousError (vi.Location, name);
+                                       Error_AlreadyDeclared (loc, name, "parent or current");
+                                       continue;
+                               }
+
+                               ToplevelParameterInfo pi = Parent == null ? null : Parent.Toplevel.GetParameterInfo (name);
+                               if (pi != null) {
+                                       Report.SymbolRelatedToPreviousError (pi.Location, name);
+                                       Error_AlreadyDeclared (loc, name, "parent or current");
+                                       continue;
+                               }
+
+                               AddKnownVariable (name, parameter_info [i]);
+                       }
+
+                       // mark this block as "used" so that we create local declarations in a sub-block
+                       // FIXME: This appears to uncover a lot of bugs
+                       //this.Use ();
+               }
+
                bool DoCheckError158 (string name, Location loc)
                {
                        LabeledStatement s = LookupLabel (name);
@@ -2606,12 +2574,18 @@ namespace Mono.CSharp {
                // is no such parameter
                //
                public ParameterReference GetParameterReference (string name, Location loc)
+               {
+                       ToplevelParameterInfo p = GetParameterInfo (name);
+                       return p == null ? null : new ParameterReference (this, p, loc);
+               }
+
+               public ToplevelParameterInfo GetParameterInfo (string name)
                {
                        int idx;
                        for (ToplevelBlock t = this; t != null; t = t.Container) {
                                Parameter par = t.Parameters.GetParameterByName (name, out idx);
                                if (par != null)
-                                       return new ParameterReference (par, this, idx, loc);
+                                       return t.parameter_info [idx];
                        }
                        return null;
                }
@@ -2673,18 +2647,10 @@ namespace Mono.CSharp {
                        return this_variable == null || this_variable.IsThisAssigned (ec);
                }
 
-               VariableInfo [] param_map;
-               public VariableInfo [] ParameterMap {
-                       get {
-                               if ((flags & Flags.VariablesInitialized) == 0)
-                                       throw new Exception ("Variables have not been initialized yet");
-                               return param_map;
-                       }
-               }
-
                public bool ResolveMeta (EmitContext ec, Parameters ip)
                {
                        int errors = Report.Errors;
+                       int orig_count = parameters.Count;
 
                        if (top_level_branching != null)
                                return true;
@@ -2692,35 +2658,21 @@ namespace Mono.CSharp {
                        if (ip != null)
                                parameters = ip;
 
-                       if (!IsIterator && Parent != null && parameters != null) {
-                               foreach (Parameter p in parameters.FixedParameters) {
-                                       LocalInfo vi = GetLocalInfo (p.Name);
-                                       if (vi != null) {
-                                               Report.SymbolRelatedToPreviousError (vi.Location, p.Name);
-                                               Error_AlreadyDeclared (loc, p.Name, "parent or current");
-                                               return false;
-                                       }
-
-                                       // FIXME: Add a 'GetParameterInfo' method and use it. This recursion is ugly
-                                       if (!CheckError136_InParents (p.Name, loc))
-                                               return false;
-                               }
-                       }
+                       // Assert: orig_count != parameter.Count => orig_count == 0
+                       if (orig_count != 0 && orig_count != parameters.Count)
+                               throw new InternalErrorException ("parameter information mismatch");
 
                        int offset = Parent == null ? 0 : Parent.AssignableSlots;
 
-                       if (parameters != null) {
-                               for (int i = 0; i < parameters.Count; ++i) {
-                                       Parameter.Modifier mod = parameters.ParameterModifier (i);
+                       for (int i = 0; i < orig_count; ++i) {
+                               Parameter.Modifier mod = parameters.ParameterModifier (i);
 
-                                       if ((mod & Parameter.Modifier.OUT) != Parameter.Modifier.OUT)
-                                               continue;
+                               if ((mod & Parameter.Modifier.OUT) != Parameter.Modifier.OUT)
+                                       continue;
 
-                                       if (param_map == null)
-                                               param_map = new VariableInfo [parameters.Count];
-                                       param_map [i] = new VariableInfo (ip, i, offset);
-                                       offset += param_map [i].Length;
-                               }
+                               VariableInfo vi = new VariableInfo (ip, i, offset);
+                               parameter_info [i].VariableInfo = vi;
+                               offset += vi.Length;
                        }
 
                        ResolveMeta (ec, offset);
@@ -2730,6 +2682,30 @@ namespace Mono.CSharp {
                        return Report.Errors == errors;
                }
 
+               // <summary>
+               //   Check whether all `out' parameters have been assigned.
+               // </summary>
+               public void CheckOutParameters (FlowBranching.UsageVector vector, Location loc)
+               {
+                       if (vector.IsUnreachable)
+                               return;
+
+                       int n = parameter_info == null ? 0 : parameter_info.Length;
+
+                       for (int i = 0; i < n; i++) {
+                               VariableInfo var = parameter_info [i].VariableInfo;
+
+                               if (var == null)
+                                       continue;
+
+                               if (vector.IsAssigned (var, false))
+                                       continue;
+
+                               Report.Error (177, loc, "The out parameter `{0}' must be assigned to before control leaves the current method",
+                                       var.Name);
+                       }
+               }
+
                public override void EmitMeta (EmitContext ec)
                {
                        base.EmitMeta (ec);
@@ -3373,7 +3349,11 @@ namespace Mono.CSharp {
                        
                        if (!fFoundDefault) {
                                ig.MarkLabel (lblDefault);
+                               if (HaveUnwrap && !fFoundNull) {
+                                       ig.MarkLabel (null_target);
+                               }
                        }
+                       
                        ig.MarkLabel (lblEnd);
                }
                //
@@ -3935,22 +3915,7 @@ namespace Mono.CSharp {
                                return false;
                        }
                        
-                       TypeExpr texpr = null;
-                       if (type is VarExpr) {
-                               Unary u = ((Pair) declarators[0]).Second as Unary;
-                               if (u == null)
-                                       return false;
-                               
-                               Expression e = u.Expr.Resolve (ec);
-                               if (e == null || e.Type == null)
-                                       return false;
-                               
-                               Type t = TypeManager.GetPointerType (e.Type);
-                               texpr = new TypeExpression (t, loc);
-                       }
-                       else
-                               texpr = type.ResolveAsTypeTerminal (ec, false);
-
+                       TypeExpr texpr = type.ResolveAsTypeTerminal (ec, false);
                        if (texpr == null)
                                return false;
 
@@ -3968,9 +3933,6 @@ namespace Mono.CSharp {
                                LocalInfo vi = (LocalInfo) p.First;
                                Expression e = (Expression) p.Second;
                                
-                               if (type is VarExpr)
-                                       vi.VariableType = expr_type;
-
                                vi.VariableInfo.SetAssigned (ec);
                                vi.SetReadOnlyContext (LocalInfo.ReadOnlyContext.Fixed);
 
@@ -4426,7 +4388,7 @@ namespace Mono.CSharp {
                Type expr_type;
                Expression [] resolved_vars;
                Expression [] converted_vars;
-               ExpressionStatement [] assign;
+               Expression [] assign;
                TemporaryVariable local_copy;
                
                public Using (object expression_or_block, Statement stmt, Location l)
@@ -4441,97 +4403,52 @@ namespace Mono.CSharp {
                //
                bool ResolveLocalVariableDecls (EmitContext ec)
                {
-                       int i = 0;
-
-                       TypeExpr texpr = null;
-                       
-                       if (expr is VarExpr) {
-                               Expression e = ((Expression)((DictionaryEntry)var_list[0]).Value).Resolve (ec);
-                               if (e == null || e.Type == null)
-                                       return false;
-                               texpr = new TypeExpression (e.Type, loc);
-                       }
-                       else
-                               texpr = expr.ResolveAsTypeTerminal (ec, false);
-
-                       if (texpr == null)
-                               return false;
-
-                       expr_type = texpr.Type;
-
-                       //
-                       // The type must be an IDisposable or an implicit conversion
-                       // must exist.
-                       //
-                       converted_vars = new Expression [var_list.Count];
-                       resolved_vars = new Expression [var_list.Count];
-                       assign = new ExpressionStatement [var_list.Count];
-
-                       bool need_conv = !TypeManager.ImplementsInterface (
-                               expr_type, TypeManager.idisposable_type);
+                       resolved_vars = new Expression[var_list.Count];
+                       assign = new Expression [var_list.Count];
+                       converted_vars = new Expression[var_list.Count];
 
-                       foreach (DictionaryEntry e in var_list){
+                       for (int i = 0; i < assign.Length; ++i) {
+                               DictionaryEntry e = (DictionaryEntry) var_list [i];
                                Expression var = (Expression) e.Key;
-                               
-                               if (expr is VarExpr) {
-                                       LocalVariableReference l = var as LocalVariableReference;
-                                       ((LocalInfo)l.Block.Variables[l.Name]).VariableType = expr_type;
-                                       ((VarExpr)expr).Handled = true;
-                               }
+                               Expression new_expr = (Expression) e.Value;
 
-                               var = var.ResolveLValue (ec, new EmptyExpression (), loc);
-                               if (var == null)
+                               Expression a = new Assign (var, new_expr, loc);
+                               a = a.Resolve (ec);
+                               if (a == null)
                                        return false;
 
                                resolved_vars [i] = var;
+                               assign [i] = a;
 
-                               if (!need_conv) {
-                                       i++;
+                               if (TypeManager.ImplementsInterface (a.Type, TypeManager.idisposable_type)) {
+                                       converted_vars [i] = var;
                                        continue;
                                }
 
-                               converted_vars [i] = Convert.ImplicitConversion (
-                                       ec, var, TypeManager.idisposable_type, loc);
-
-                               if (converted_vars [i] == null) {
-                                       Error_IsNotConvertibleToIDisposable ();
+                               a = Convert.ImplicitConversion (ec, a, TypeManager.idisposable_type, var.Location);
+                               if (a == null) {
+                                       Error_IsNotConvertibleToIDisposable (var);
                                        return false;
                                }
 
-                               i++;
-                       }
-
-                       i = 0;
-                       foreach (DictionaryEntry e in var_list){
-                               Expression var = resolved_vars [i];
-                               Expression new_expr = (Expression) e.Value;
-                               Expression a;
-
-                               a = new Assign (var, new_expr, loc);
-                               a = a.Resolve (ec);
-                               if (a == null)
-                                       return false;
-
-                               if (!need_conv)
-                                       converted_vars [i] = var;
-                               assign [i] = (ExpressionStatement) a;
-                               i++;
+                               converted_vars [i] = a;
                        }
 
                        return true;
                }
 
-               void Error_IsNotConvertibleToIDisposable ()
+               static void Error_IsNotConvertibleToIDisposable (Expression expr)
                {
-                       Report.Error (1674, loc, "`{0}': type used in a using statement must be implicitly convertible to `System.IDisposable'",
-                               TypeManager.CSharpName (expr_type));
+                       Report.SymbolRelatedToPreviousError (expr.Type);
+                       Report.Error (1674, expr.Location, "`{0}': type used in a using statement must be implicitly convertible to `System.IDisposable'",
+                               expr.GetSignatureForError ());
                }
 
                bool ResolveExpression (EmitContext ec)
                {
                        if (!TypeManager.ImplementsInterface (expr_type, TypeManager.idisposable_type)){
                                if (Convert.ImplicitConversion (ec, expr, TypeManager.idisposable_type, loc) == null) {
-                                       Error_IsNotConvertibleToIDisposable ();
+                                       Error_IsNotConvertibleToIDisposable (expr);
                                        return false;
                                }
                        }
@@ -4551,7 +4468,7 @@ namespace Mono.CSharp {
                        int i = 0;
 
                        for (i = 0; i < assign.Length; i++) {
-                               assign [i].EmitStatement (ec);
+                               assign [i].Emit (ec);
 
                                if (emit_finally)
                                        ig.BeginExceptionBlock ();
@@ -4775,58 +4692,11 @@ namespace Mono.CSharp {
                        if (expr == null)
                                return false;
 
-                       if (type is VarExpr) {
-                               Type element_type = null;
-                               if (TypeManager.HasElementType (expr.Type))
-                                       element_type = TypeManager.GetElementType (expr.Type);
-                               else {
-                                       MethodGroupExpr mg = Expression.MemberLookup (
-                                               ec.ContainerType, expr.Type, "GetEnumerator", MemberTypes.Method,
-                                               Expression.AllBindingFlags, loc) as MethodGroupExpr;
-                                       
-                                       if (mg == null)
-                                                       return false;
-                                       
-                                       MethodInfo get_enumerator = null;
-                                       foreach (MethodInfo mi in mg.Methods) {
-                                               if (TypeManager.GetParameterData (mi).Count != 0)
-                                                       continue;
-                                               if ((mi.Attributes & MethodAttributes.Public) != MethodAttributes.Public)
-                                                       continue;
-                                               if (CollectionForeach.IsOverride (mi))
-                                                       continue;
-                                               get_enumerator = mi;
-                                       }
-                                       
-                                       if (get_enumerator == null)
-                                               return false;
-                                       
-                                       PropertyInfo pi = TypeManager.GetProperty (get_enumerator.ReturnType, "Current");
-                                       
-                                       if (pi == null)
-                                               return false;
-                                               
-                                       element_type = pi.PropertyType;
-                               }
-
-                               type = new TypeLookupExpression (element_type.AssemblyQualifiedName);
-                
-                               LocalVariableReference lv = variable as LocalVariableReference;
-                               ((LocalInfo)lv.Block.Variables[lv.Name]).VariableType = element_type;
-                       }
-
-                       Constant c = expr as Constant;
-                       if (c != null && c.GetValue () == null) {
+                       if (expr.Type == TypeManager.null_type) {
                                Report.Error (186, loc, "Use of null is not valid in this context");
                                return false;
                        }
 
-                       TypeExpr texpr = type.ResolveAsTypeTerminal (ec, false);
-                       if (texpr == null)
-                               return false;
-
-                       Type var_type = texpr.Type;
-
                        if (expr.eclass == ExprClass.MethodGroup || expr is AnonymousMethodExpression) {
                                Report.Error (446, expr.Location, "Foreach statement cannot operate on a `{0}'",
                                        expr.ExprClassName);
@@ -4847,13 +4717,12 @@ namespace Mono.CSharp {
                        }
 
                        if (expr.Type.IsArray) {
-                               array = new ArrayForeach (var_type, variable, expr, statement, loc);
+                               array = new ArrayForeach (type, variable, expr, statement, loc);
                                return array.Resolve (ec);
-                       } else {
-                               collection = new CollectionForeach (
-                                       var_type, variable, expr, statement, loc);
-                               return collection.Resolve (ec);
                        }
+                       
+                       collection = new CollectionForeach (type, variable, expr, statement, loc);
+                       return collection.Resolve (ec);
                }
 
                protected override void DoEmit (EmitContext ec)
@@ -4901,7 +4770,7 @@ namespace Mono.CSharp {
                        Expression variable, expr, conv;
                        Statement statement;
                        Type array_type;
-                       Type var_type;
+                       Expression var_type;
                        TemporaryVariable[] lengths;
                        ArrayCounter[] counter;
                        int rank;
@@ -4909,7 +4778,7 @@ namespace Mono.CSharp {
                        TemporaryVariable copy;
                        Expression access;
 
-                       public ArrayForeach (Type var_type, Expression var,
+                       public ArrayForeach (Expression var_type, Expression var,
                                             Expression expr, Statement stmt, Location l)
                        {
                                this.var_type = var_type;
@@ -4945,7 +4814,17 @@ namespace Mono.CSharp {
                                if (access == null)
                                        return false;
 
-                               conv = Convert.ExplicitConversion (ec, access, var_type, loc);
+                               VarExpr ve = var_type as VarExpr;
+                               if (ve != null) {
+                                       // Infer implicitly typed local variable from foreach array type
+                                       var_type = new TypeExpression (access.Type, ve.Location);
+                               }
+
+                               var_type = var_type.ResolveAsTypeTerminal (ec, false);
+                               if (var_type == null)
+                                       return false;
+
+                               conv = Convert.ExplicitConversion (ec, access, var_type.Type, loc);
                                if (conv == null)
                                        return false;
 
@@ -5027,11 +4906,12 @@ namespace Mono.CSharp {
                        MethodGroupExpr get_enumerator;
                        PropertyExpr get_current;
                        MethodInfo move_next;
-                       Type var_type, enumerator_type;
+                       Expression var_type;
+                       Type enumerator_type;
                        bool is_disposable;
                        bool enumerator_found;
 
-                       public CollectionForeach (Type var_type, Expression var,
+                       public CollectionForeach (Expression var_type, Expression var,
                                                  Expression expr, Statement stmt, Location l)
                        {
                                this.var_type = var_type;
@@ -5331,6 +5211,16 @@ namespace Mono.CSharp {
                                        return false;
                                }
 
+                               VarExpr ve = var_type as VarExpr;
+                               if (ve != null) {
+                                       // Infer implicitly typed local variable from foreach enumerable type
+                                       var_type = new TypeExpression (get_current.PropertyInfo.PropertyType, var_type.Location);
+                               }
+
+                               var_type = var_type.ResolveAsTypeTerminal (ec, false);
+                               if (var_type == null)
+                                       return false;
+                                                               
                                enumerator = new TemporaryVariable (enumerator_type, loc);
                                enumerator.Resolve (ec);
 
@@ -5351,7 +5241,7 @@ namespace Mono.CSharp {
                                get_current.InstanceExpression = enumerator;
 
                                Statement block = new CollectionForeachStatement (
-                                       var_type, variable, get_current, statement, loc);
+                                       var_type.Type, variable, get_current, statement, loc);
 
                                loop = new While (move_next_expr, block, loc);