JSObjectGetPropertyForKey top-level property

JSValueRef Function(JSContextRef ctx, JSObjectRef object, JSValueRef propertyKey, Pointer<JSValueRef> exception) JSObjectGetPropertyForKey
final

MacOS 10.15, iOS 13.0 Gets a property from an object using a JSValueRef as the property key. ctx The execution context to use. object The JSObject whose property you want to get. propertyKey A JSValueRef containing the property key to use when looking up the property. 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 property's value if object has the property key, otherwise the undefined value. @discussion This function is the same as performing "objectpropertyKey" from JavaScript.

Implementation

final JSValueRef Function(JSContextRef ctx, JSObjectRef object, JSValueRef propertyKey, Pointer<JSValueRef> exception) JSObjectGetPropertyForKey =
    jscLib.lookup<NativeFunction<JSValueRef Function(JSContextRef ctx, JSObjectRef object, JSValueRef propertyKey, Pointer<JSValueRef> exception)>>('JSObjectGetPropertyForKey').asFunction();