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