Struct
JavaScriptCoreClassVTable
Description [src]
struct JSCClassVTable {
  JSCClassGetPropertyFunction get_property;
  JSCClassSetPropertyFunction set_property;
  JSCClassHasPropertyFunction has_property;
  JSCClassDeletePropertyFunction delete_property;
  JSCClassEnumeratePropertiesFunction enumerate_properties;
  void (* _jsc_reserved0) (
void
  );
  void (* _jsc_reserved1) (
void
  );
  void (* _jsc_reserved2) (
void
  );
  void (* _jsc_reserved3) (
void
  );
}
        Virtual table for a JSCClass. This can be optionally used when registering a JSCClass in a JSCContext
to provide a custom implementation for the class. All virtual functions are optional and can be set to
NULL to fallback to the default implementation.
Structure members
get_propertyA
JSCClassGetPropertyFunctionfor getting a property.set_propertyA
JSCClassSetPropertyFunctionfor setting a property.has_propertyA
JSCClassHasPropertyFunctionfor querying a property.delete_propertyA
JSCClassDeletePropertyFunctionfor deleting a property.enumerate_propertiesA
JSCClassEnumeratePropertiesFunctionfor enumerating properties._jsc_reserved0- No description available.
 _jsc_reserved1- No description available.
 _jsc_reserved2- No description available.
 _jsc_reserved3- No description available.