ClassSetPropertyFunction
typealias ClassSetPropertyFunction = (jscClass: Class, context: Context, <Error class: unknown class>?, name: String, value: Value) -> Boolean(source)
The type of set_property in #JSCClassVTable. This is only required when you need to handle external properties not added to the prototype.
param
jscClassa #JSCClassparam
contexta #JSCContextparam
instancethe @jsc_class instanceparam
namethe property nameparam
valuethe #JSCValue to setreturn true if handled or false to forward the request to the parent class or prototype chain.