2007-12-04 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / class / System.Core / System.Linq.Expressions / NewExpression.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 //
19 // Authors:
20 //        Antonello Provenzano  <antonello@deveel.com>
21 //
22
23 using System.Collections.ObjectModel;
24 using System.Reflection;
25 using System.Text;
26
27 namespace System.Linq.Expressions
28 {
29     public sealed class NewExpression : Expression
30     {
31         #region .ctor
32         internal NewExpression(Type type, ConstructorInfo constructor, ReadOnlyCollection<Expression> arguments)
33             : base(ExpressionType.New, type)
34         {
35             this.constructor = constructor;
36             this.arguments = arguments;
37         }
38         #endregion
39
40         #region Fields
41         ReadOnlyCollection<Expression> arguments;
42                 ReadOnlyCollection<MemberInfo> members;
43         private ConstructorInfo constructor;
44         #endregion
45
46         #region Properties
47         public ReadOnlyCollection<Expression> Arguments
48         {
49             get { return arguments; }
50         }
51
52         public ConstructorInfo Constructor
53         {
54             get { return constructor; }
55         }
56                 
57                 public ReadOnlyCollection<MemberInfo> Members {
58                         get { return members; }
59                 }
60                                         
61         #endregion
62
63         #region Internal Methods
64         internal override void BuildString(StringBuilder builder)
65         {
66             Type initType = base.Type;
67             if (constructor != null)
68                 initType = constructor.DeclaringType;
69
70             builder.Append("new " + initType.Name + "(");
71
72             int argc = arguments.Count;
73             for (int i = 0; i < argc; i++)
74             {
75                 Expression argExpr = arguments[i];
76                 argExpr.BuildString(builder);
77
78                 if (i < argc - 1)
79                     builder.Append(", ");
80             }
81
82             builder.Append(")");
83         }
84         #endregion
85     }
86 }