jSObjectGetProperty top-level property
Pointer<NativeType> Function(Pointer<NativeType> ctx, Pointer<NativeType> object, Pointer<NativeType> propertyName, Pointer<Pointer<NativeType> > exception)
jSObjectGetProperty
final
Gets a property from an object.
ctx
(JSContextRef) The execution context to use.
object
(JSObjectRef) The JSObject whose property you want to get.
propertyName
(JSStringRef) A JSString containing the property's name.
exception
(JSValueRef*) 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
(JSValueRef) The property's value if object has the property, otherwise the undefined value.
Implementation
final Pointer Function(Pointer ctx, Pointer object, Pointer propertyName,
Pointer<Pointer> exception) jSObjectGetProperty =
JscFfi.lib
.lookup<
NativeFunction<
Pointer Function(Pointer, Pointer, Pointer,
Pointer<Pointer>)>>('JSObjectGetProperty')
.asFunction();