New test.
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / JSConstructor.cs
1 //
2 // JSConstructor.cs:
3 //
4 // Author:
5 //      Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Reflection;
33 using System.Diagnostics;
34 using System.Globalization;
35
36 namespace Microsoft.JScript {
37
38         public sealed class JSConstructor : ConstructorInfo
39         {
40                 public override MethodAttributes Attributes {
41                         get { throw new NotImplementedException (); }
42                 }
43
44
45                 public override string Name {
46                         get { throw new NotImplementedException (); }
47                 }
48
49
50                 public override Type DeclaringType {
51                         get { throw new NotImplementedException (); }
52                 }
53
54
55                 public override object [] GetCustomAttributes (Type t, bool inherit)
56                 {
57                         throw new NotImplementedException ();
58                 }
59
60
61                 public override object [] GetCustomAttributes (bool inherit)
62                 {
63                         throw new NotImplementedException ();
64                 }
65
66
67                 public override MethodImplAttributes GetMethodImplementationFlags ()
68                 {       
69                         throw new NotImplementedException ();
70                 }
71
72
73                 public override ParameterInfo [] GetParameters ()
74                 {
75                         throw new NotImplementedException ();
76                 }
77
78                 [DebuggerStepThroughAttribute]
79                 [DebuggerHiddenAttribute]
80                 public override object Invoke (BindingFlags options, System.Reflection.Binder binder,
81                                                object [] parameters, CultureInfo culture)
82                 {
83                         throw new NotImplementedException ();
84                 }
85
86                 [DebuggerStepThroughAttribute]
87                 [DebuggerHiddenAttribute]
88                 public override object Invoke (object obj, BindingFlags options, System.Reflection.Binder binder,
89                                                object [] parameters, CultureInfo culture)
90                 {
91                         throw new NotImplementedException ();
92                 }
93
94
95                 public override bool IsDefined (Type type, bool inherit)
96                 {
97                         throw new NotImplementedException ();
98                 }
99
100
101                 public override MemberTypes MemberType {
102                         get { throw new NotImplementedException (); }
103                 }
104
105
106                 public override RuntimeMethodHandle MethodHandle {
107                         get { throw new NotImplementedException (); }
108                 }
109
110
111                 public override Type ReflectedType {
112                         get { throw new NotImplementedException (); }
113                 }
114         }
115 }