This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / StackFrame.cs
1 //
2 // StackFrame.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 namespace Microsoft.JScript.Tmp
32 {
33         using System;
34         using System.Reflection;
35         using Microsoft.JScript.Vsa;
36
37         public sealed class StackFrame : ScriptObject, IActivationObject
38         {
39                 public object [] localVars;
40                 public object closureInstance;
41
42
43                 public object GetDefaultThisObject ()
44                 {
45                         throw new NotImplementedException ();
46                 }
47
48
49                 public FieldInfo GetField (string name, int lexLevel)
50                 {
51                         throw new NotImplementedException ();
52                 }
53
54                 
55                 public GlobalScope GetGlobalScope ()
56                 {
57                         throw new NotImplementedException ();
58                 }
59
60
61                 FieldInfo IActivationObject.GetLocalField (string name)
62                 {
63                         throw new NotImplementedException ();
64                 }
65
66
67                 public override MemberInfo [] GetMember (string name, BindingFlags bindAttr)
68                 {
69                         throw new NotImplementedException ();
70                 }
71
72
73                 public override MemberInfo [] GetMembers (BindingFlags bindAttr)
74                 {
75                         throw new NotImplementedException ();
76                 }
77
78
79                 public object GetMemberValue (string name, int lexLevel)
80                 {
81                         throw new NotImplementedException ();
82                 }
83
84
85                 public static void PushStackFrameForStaticMethod (RuntimeTypeHandle thisClass,
86                                                                   JSLocalField [] fields,
87                                                                   VsaEngine engine)
88                 {
89                         throw new NotImplementedException ();
90                 }
91
92
93                 public static void PushStackFrameForMethod (object thisObj, JSLocalField [] fields,
94                                                             VsaEngine engine)
95                 {
96                         throw new NotImplementedException ();
97                 }
98         }
99 }