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_property | A  | 
| set_property | A  | 
| has_property | A  | 
| delete_property | A  | 
| enumerate_properties | A  | 
| _jsc_reserved0 | No description available. | 
| _jsc_reserved1 | No description available. | 
| _jsc_reserved2 | No description available. | 
| _jsc_reserved3 | No description available. |