jSObjectMakeFunctionWithCallback top-level property

Pointer<NativeType> Function(Pointer<NativeType> ctx, Pointer<NativeType> name, Pointer<NativeFunction<JSObjectCallAsFunctionCallback>> callAsFunction) jSObjectMakeFunctionWithCallback
final

Convenience method for creating a JavaScript function with a given callback as its implementation. ctx (JSContextRef) The execution context to use. name (JSStringRef) A JSString containing the function's name. This will be used when converting the function to string. Pass NULL to create an anonymous function. callAsFunction (JSObjectCallAsFunctionCallback) The JSObjectCallAsFunctionCallback to invoke when the function is called. @result (JSObjectRef) A JSObject that is a function. The object's prototype will be the default function prototype.

Implementation

final Pointer Function(Pointer ctx, Pointer name,
        Pointer<NativeFunction<JSObjectCallAsFunctionCallback>> callAsFunction)
    jSObjectMakeFunctionWithCallback = JscFfi.lib
        .lookup<NativeFunction<Pointer Function(Pointer, Pointer, Pointer)>>(
            'JSObjectMakeFunctionWithCallback')
        .asFunction();