JSObjectMakeError top-level property

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

Creates a JavaScript Error object, as if by invoking the built-in Error constructor. ctx The execution context to use. argumentCount An integer count of the number of arguments in arguments. arguments A JSValue array of arguments to pass to the Error Constructor. 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 A JSObject that is an Error.

Implementation

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