jSContextGetGroup top-level property
Gets the context group to which a JavaScript execution context belongs.
ctx
(JSContextRef) The JSContext whose group you want to get.
@result
(JSContextGroupRef) ctx's group.
Implementation
final Pointer Function(Pointer ctx) jSContextGetGroup = JscFfi.lib
.lookup<NativeFunction<Pointer Function(Pointer)>>('JSContextGetGroup')
.asFunction();