pub unsafe extern "C" fn JSObjectSetPrototype(
    ctx: JSContextRef,
    object: JSObjectRef,
    value: JSValueRef
)
Expand description

Sets an object’s prototype.

  • ctx: The execution context to use.
  • object: The JSObject whose prototype you want to set.
  • value: A JSValue to set as the object’s prototype.