Type Definition javascriptcore_sys::JSObjectHasPropertyCallback
[−]
[src]
type JSObjectHasPropertyCallback = Option<unsafe extern "C" fn(_: JSContextRef, _: JSObjectRef, _: JSStringRef) -> bool>;
The callback invoked when determining whether an object has a property.
ctx: The execution context to use.object: TheJSObjectto search for the property.propertyName: AJSStringcontaining the name of the property look up.
Returns true if object has the property, otherwise false.
If you named your function HasProperty, you would declare it like this:
bool HasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
If this function returns false, the hasProperty request
forwards to object's statically declared properties, then
its parent class chain (which includes the default object
class), then its prototype chain.
This callback enables optimization in cases where only a property's existence needs to be known, not its value, and computing its value would be expensive.
If this callback is NULL, the getProperty callback will be used to service hasProperty requests.