ClassDeletePropertyFunction
typealias ClassDeletePropertyFunction = (jscClass: Class, context: Context, <Error class: unknown class>?, name: String) -> Boolean
The type of delete_property in #JSCClassVTable. This is only required when you need to handle external properties not added to the prototype.
param
jscClass
a #JSCClassparam
context
a #JSCContextparam
instance
the @jsc_class instanceparam
name
the property namereturn true if handled or false to to forward the request to the parent class or prototype chain.