Type Definition javascriptcore_sys::JSObjectHasInstanceCallback [] [src]

type JSObjectHasInstanceCallback = Option<unsafe extern "C" fn(_: JSContextRef, _: JSObjectRef, _: JSValueRef, _: *mut JSValueRef) -> bool>;

The callback invoked when an object is used as the target of an instanceof expression.

Returns true if possibleInstance is an instance of constructor, otherwise false.

If you named your function HasInstance, you would declare it like this:

bool
HasInstance(JSContextRef ctx, JSObjectRef constructor,
            JSValueRef possibleInstance, JSValueRef* exception);

If your callback were invoked by the JavaScript expression someValue instanceof myObject, constructor would be set to myObject and possibleInstance would be set to someValue.

If this callback is NULL, instanceof expressions that target your object will return false.

Standard JavaScript practice calls for objects that implement the callAsConstructor callback to implement the hasInstance callback as well.