fixed tests
[mono.git] / mcs / class / corlib / System.Reflection.Emit / MonoArrayMethod.cs
1 //
2 // System.Reflection/MonoMethod.cs
3 // The class used to represent methods from the mono runtime.
4 //
5 // Author:
6 //   Paolo Molaro (lupus@ximian.com)
7 //
8 // (C) 2001 Ximian, Inc.  http://www.ximian.com
9 //
10
11 //
12 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33
34 using System;
35 using System.Globalization;
36 using System.Runtime.CompilerServices;
37 using System.Runtime.InteropServices;
38
39 namespace System.Reflection {
40         internal class MonoArrayMethod: MethodInfo {
41                 internal RuntimeMethodHandle mhandle;
42                 internal Type parent;
43                 internal Type ret;
44                 internal Type[] parameters;
45                 internal string name;
46                 internal int table_idx;
47                 internal CallingConventions call_conv;
48
49                 internal MonoArrayMethod (Type arrayClass, string methodName, CallingConventions callingConvention, Type returnType, Type[] parameterTypes) {
50                         name = methodName;
51                         parent = arrayClass;
52                         ret = returnType;
53                         parameters = (Type[])parameterTypes.Clone();
54                         call_conv = callingConvention;
55                 }
56                 
57                 [MonoTODO("Always returns this")]
58                 public override MethodInfo GetBaseDefinition() {
59                         return this; /* FIXME */
60                 }
61                 public override Type ReturnType {
62                         get {
63                                 return ret;
64                         }
65                 }
66
67                 [MonoTODO("Not implemented.  Always returns null")]
68                 public override ICustomAttributeProvider ReturnTypeCustomAttributes { 
69                         get {return null;}
70                 }
71                 
72                 [MonoTODO("Not implemented.  Always returns zero")]
73                 public override MethodImplAttributes GetMethodImplementationFlags() {
74                         return (MethodImplAttributes)0;
75                 }
76
77                 [MonoTODO("Not implemented.  Always returns an empty array")]
78                 public override ParameterInfo[] GetParameters() {
79                         return new ParameterInfo [0];
80                 }
81
82                 [MonoTODO("Not implemented")]
83                 public override Object Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) {
84                         throw new NotImplementedException ();
85                 }
86
87                 public override RuntimeMethodHandle MethodHandle { 
88                         get {return mhandle;} 
89                 }
90
91                 [MonoTODO("Not implemented.  Always returns zero")]
92                 public override MethodAttributes Attributes { 
93                         get {
94                                 return (MethodAttributes)0;
95                         } 
96                 }
97                 
98                 public override Type ReflectedType {
99                         get {
100                                 return parent;
101                         }
102                 }
103                 public override Type DeclaringType {
104                         get {
105                                 return parent;
106                         }
107                 }
108                 public override string Name {
109                         get {
110                                 return name;
111                         }
112                 }
113                 
114                 public override bool IsDefined (Type attributeType, bool inherit) {
115                         return MonoCustomAttrs.IsDefined (this, attributeType, inherit);
116                 }
117
118                 public override object[] GetCustomAttributes( bool inherit) {
119                         return MonoCustomAttrs.GetCustomAttributes (this, inherit);
120                 }
121                 public override object[] GetCustomAttributes( Type attributeType, bool inherit) {
122                         return MonoCustomAttrs.GetCustomAttributes (this, attributeType, inherit);
123                 }
124
125                 public override string ToString () {
126                         string parms = String.Empty;
127                         ParameterInfo[] p = GetParameters ();
128                         for (int i = 0; i < p.Length; ++i) {
129                                 if (i > 0)
130                                         parms = parms + ", ";
131                                 parms = parms + p [i].ParameterType.Name;
132                         }
133                         return ReturnType.Name+" "+Name+"("+parms+")";
134                 }
135         }
136 }