pub unsafe extern "C" fn JS_SetPrototype(
cx: *mut JSContext,
obj: HandleObject,
proto: HandleObject,
) -> boolExpand description
Change the prototype of obj.
Implements: ES6 [[SetPrototypeOf]] internal method.
In cases where ES6 [[SetPrototypeOf]] returns false without an exception, JS_SetPrototype throws a TypeError and returns false.