JSObjectCallAsFunction top-level property

JSValueRef Function(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, int argumentCount, Pointer<JSValueRef> arguments, Pointer<JSValueRef> exception) JSObjectCallAsFunction
final

Calls an object as a function. ctx The execution context to use. object The JSObject to call as a function. thisObject The object to use as "this," or NULL to use the global object as "this." argumentCount An integer count of the number of arguments in arguments. arguments A JSValue array of arguments to pass to the function. Pass NULL if argumentCount is 0. exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. @result The JSValue that results from calling object as a function, or NULL if an exception is thrown or object is not a function.

Implementation

final JSValueRef Function(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, int argumentCount, Pointer<JSValueRef> arguments, Pointer<JSValueRef> exception) JSObjectCallAsFunction = jscLib
    .lookup<NativeFunction<JSValueRef Function(JSContextRef ctx, JSObjectRef object, JSObjectRef thisObject, Size argumentCount, Pointer<JSValueRef> arguments, Pointer<JSValueRef> exception)>>(
        'JSObjectCallAsFunction')
    .asFunction();