JSObjectDeleteProperty top-level property
bool Function(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, Pointer<JSValueRef> exception)
JSObjectDeleteProperty
final
Deletes a property from an object.
ctx The execution context to use.
object The JSObject whose property you want to delete.
propertyName A JSString containing the property's name.
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 true if the delete operation succeeds, otherwise false (for example, if the property has the kJSPropertyAttributeDontDelete attribute set).
Implementation
final bool Function(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, Pointer<JSValueRef> exception) JSObjectDeleteProperty =
jscLib.lookup<NativeFunction<Bool Function(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, Pointer<JSValueRef> exception)>>('JSObjectDeleteProperty').asFunction();