Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / class / Microsoft.CSharp / Microsoft.CSharp.RuntimeBinder / Binder.cs
1 //
2 // Binder.cs
3 //
4 // Authors:
5 //      Marek Safar  <marek.safar@gmail.com>
6 //
7 // Copyright (C) 2009 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Dynamic;
31 using System.Collections.Generic;
32 using System.Runtime.CompilerServices;
33 using System.Linq.Expressions;
34 using System.Reflection;
35
36 namespace Microsoft.CSharp.RuntimeBinder
37 {
38         public static class Binder
39         {
40                 public static CallSiteBinder BinaryOperation (CSharpBinderFlags flags, ExpressionType operation, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
41                 {
42                         return new CSharpBinaryOperationBinder (operation, flags, context, argumentInfo);
43                 }
44                 
45                 public static CallSiteBinder Convert (CSharpBinderFlags flags, Type type, Type context)
46                 {
47                         return new CSharpConvertBinder (type, context, flags);
48                 }
49                 
50                 public static CallSiteBinder GetIndex (CSharpBinderFlags flags, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
51                 {
52                         return new CSharpGetIndexBinder (context, argumentInfo);
53                 }
54                 
55                 public static CallSiteBinder GetMember (CSharpBinderFlags flags, string name, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
56                 {
57                         return new CSharpGetMemberBinder (name, context, argumentInfo);
58                 }
59                 
60                 public static CallSiteBinder Invoke (CSharpBinderFlags flags, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
61                 {
62                         return new CSharpInvokeBinder (flags, context, argumentInfo);
63                 }
64                 
65                 public static CallSiteBinder InvokeConstructor (CSharpBinderFlags flags, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
66                 {
67                         // What are flags for here
68                         return new CSharpInvokeConstructorBinder (context, argumentInfo);
69                 }
70                 
71                 public static CallSiteBinder InvokeMember (CSharpBinderFlags flags, string name, IEnumerable<Type> typeArguments, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
72                 {
73                         return new CSharpInvokeMemberBinder (flags, name, context, typeArguments, argumentInfo);
74                 }
75                 
76                 public static CallSiteBinder IsEvent (CSharpBinderFlags flags, string name, Type context)
77                 {
78                         return new CSharpIsEventBinder (name, context);
79                 }
80                 
81                 public static CallSiteBinder SetIndex (CSharpBinderFlags flags, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
82                 {
83                         return new CSharpSetIndexBinder (context, argumentInfo);
84                 }
85                 
86                 public static CallSiteBinder SetMember (CSharpBinderFlags flags, string name, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
87                 {
88                         return new CSharpSetMemberBinder (name, context, argumentInfo);
89                 }
90                 
91                 public static CallSiteBinder UnaryOperation (CSharpBinderFlags flags, ExpressionType operation, Type context, IEnumerable<CSharpArgumentInfo> argumentInfo)
92                 {
93                         return new CSharpUnaryOperationBinder (operation, flags, context, argumentInfo);
94                 }
95         }
96 }