JSObjectGetProperty top-level property

JSValueRef Function(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, Pointer<JSValueRef> exception) JSObjectGetProperty
final

Gets a property from an object. ctx The execution context to use. object The JSObject whose property you want to get. 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 The property's value if object has the property, otherwise the undefined value.

Implementation

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