2003-07-27 Cesar Lopez Nataren <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 namespace Microsoft.JScript.Tmp
11 {
12         using System;
13
14         public class FunctionObject : ScriptFunction
15         {
16                 public override string ToString ()
17                 {
18                         throw new NotImplementedException ();
19                 }
20         }
21 }