Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / class / System.Core / System.Linq.Expressions / MemberListBinding.cs
index bfff68e0fee40f65246bdf63a94940ab42f47434..3c320e63e30a2c4e375287fb3b633507d40caebc 100644 (file)
@@ -1,57 +1,60 @@
-// Permission is hereby granted, free of charge, to any person obtaining
+//
+// MemberListBinding.cs
+//
+// Author:
+//   Jb Evain (jbevain@novell.com)
+//
+// (C) 2008 Novell, Inc. (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // "Software"), to deal in the Software without restriction, including
 // without limitation the rights to use, copy, modify, merge, publish,
 // distribute, sublicense, and/or sell copies of the Software, and to
 // permit persons to whom the Software is furnished to do so, subject to
 // the following conditions:
-// 
+//
 // The above copyright notice and this permission notice shall be
 // included in all copies or substantial portions of the Software.
-// 
+//
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-//
-// Authors:
-//        Antonello Provenzano  <antonello@deveel.com>
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System;
 using System.Collections.ObjectModel;
 using System.Reflection;
-using System.Text;
-
-namespace System.Linq.Expressions
-{
-    public sealed class MemberListBinding : MemberBinding
-    {
-        #region .ctor
-        internal MemberListBinding(MemberInfo member, ReadOnlyCollection<Expression> expressions)
-            : base(MemberBindingType.ListBinding, member)
-        {
-            this.expressions = expressions;
-        }
-        #endregion
-
-        #region Fields
-        private ReadOnlyCollection<Expression> expressions;
-        #endregion
-
-        #region Properties
-        public ReadOnlyCollection<Expression> Expressions
-        {
-            get { return expressions; }
-        }
-        #endregion
-
-        #region Internal Methods
-        internal override void BuildString(StringBuilder builder)
-        {
-            //TODO:
-        }
-        #endregion
-    }
-}
\ No newline at end of file
+using System.Reflection.Emit;
+
+namespace System.Linq.Expressions {
+
+       public sealed class MemberListBinding : MemberBinding {
+
+               ReadOnlyCollection<ElementInit> initializers;
+
+               public ReadOnlyCollection<ElementInit> Initializers {
+                       get { return initializers; }
+               }
+
+               internal MemberListBinding (MemberInfo member, ReadOnlyCollection<ElementInit> initializers)
+                       : base (MemberBindingType.ListBinding, member)
+               {
+                       this.initializers = initializers;
+               }
+
+#if !FULL_AOT_RUNTIME
+               internal override void Emit (EmitContext ec, LocalBuilder local)
+               {
+                       var member = EmitLoadMember (ec, local);
+
+                       foreach (var initializer in initializers)
+                               initializer.Emit (ec, member);
+               }
+#endif
+       }
+}