2003-09-22 <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / FunctionObject.cs
1 //
2 // FunctionObject.cs:
3 //
4 // Author:
5 //      Cesar Octavio Lopez Nataren
6 //
7 // (C) 2003, Cesar Octavio Lopez Nataren, <cesar@ciencias.unam.mx>
8 //
9
10 using System;
11
12 namespace Microsoft.JScript {
13
14         public class FunctionObject : ScriptFunction {
15
16                 internal string Name;
17                 internal string ReturnType;
18                 internal FormalParameterList Params;
19                 internal Block Body;
20             
21                 internal FunctionObject ()
22                 {
23                         Params = new FormalParameterList ();
24                         Body = new Block ();
25                 }
26
27                 public override string ToString ()
28                 {
29                         throw new NotImplementedException ();
30                 }
31         }
32 }