Remove harmless but not-ready-for-prime-time stuff that tagged along with the last checkin.

This commit is contained in:
brendan%mozilla.org 2005-05-17 02:57:26 +00:00
parent 2b9ce38fd0
commit 79033ae9c0

View File

@ -3167,18 +3167,6 @@ JS_NewFunction(JSContext *cx, JSNative native, uintN nargs, uintN flags,
return js_NewFunction(cx, NULL, native, nargs, flags, parent, atom);
}
JS_PUBLIC_API(JSClass *)
JS_GetFunctionBoundClass(JSContext *cx, JSFunction *fun)
{
return fun->clasp;
}
JS_PUBLIC_API(void)
JS_SetFunctionBoundClass(JSContext *cx, JSFunction *fun, JSClass *clasp)
{
fun->clasp = clasp;
}
JS_PUBLIC_API(JSObject *)
JS_CloneFunctionObject(JSContext *cx, JSObject *funobj, JSObject *parent)
{