Added some classes from the public API of Microsoft.JScript.
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / FunctionObject.cs
1 //
2 // FunctionObject.cs:
3 //
4 // Author: Cesar Octavio Lopez Nataren
5 //
6
7 namespace Microsoft.JScript
8 {
9         using System;
10
11         public class FunctionObject : ScriptFunction
12         {
13                 public override string ToString ()
14                 {
15                         throw new NotImplementedException ();
16                 }
17         }
18 }