Function javascriptcore_sys::JSObjectGetProperty
[−]
[src]
pub unsafe extern "C" fn JSObjectGetProperty(
ctx: JSContextRef,
object: JSObjectRef,
propertyName: JSStringRef,
exception: *mut JSValueRef
) -> JSValueRef
Gets a property from an object.
ctx: The execution context to use.object: TheJSObjectwhose property you want to get.propertyName: AJSStringcontaining the property's name.exception: A pointer to aJSValueRefin which to store an exception, if any. PassNULLif you do not care to store an exception.
Returns the property's value if object has the property, otherwise the undefined value.