[][src]Function ul_sys::JSObjectMake

pub unsafe extern "C" fn JSObjectMake(
    ctx: JSContextRef,
    jsClass: JSClassRef,
    data: *mut c_void
) -> JSObjectRef

@function @abstract Creates a JavaScript object. @param ctx The execution context to use. @param jsClass The JSClass to assign to the object. Pass NULL to use the default object class. @param data A void* to set as the object's private data. Pass NULL to specify no private data. @result A JSObject with the given class and private data. @discussion The default object class does not allocate storage for private data, so you must provide a non-NULL jsClass to JSObjectMake if you want your object to be able to store private data.

data is set on the created object before the intialize methods in its class chain are called. This enables the initialize methods to retrieve and manipulate data through JSObjectGetPrivate.