JSCClassGetPropertyFunction

The type of get_property in #JSCClassVTable. This is only required when you need to handle external properties not added to the prototype.

alias JSCClassGetPropertyFunction = JSCValue* function(JSCClass* jscClass, JSCContext* context, void* instance_, const(char)* name)

Return Value

a #JSCValue or %NULL to forward the request to the parent class or prototype chain

Meta