// // FunctionObject.cs: // // Author: // Cesar Octavio Lopez Nataren // // (C) 2003, Cesar Octavio Lopez Nataren, // namespace Microsoft.JScript { using System; public class FunctionObject : ScriptFunction { public override string ToString () { throw new NotImplementedException (); } } }