Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

JSObjectOps.destroyObjectMap

Obsolete since JavaScript 1.8.5
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

Warning: JSObjectOps is not a supported API. Details of the API may change from one release to the next. This documentation should be considered SpiderMonkey internals documentation, not API documentation. See bug 408416 for details.

The JSObjectOps.destroyObjectMap callback is called to destroy a JSObjectMap when its reference count goes to zero.

Syntax

typedef void (*JSObjectMapOp)(JSContext *cx, JSObjectMap *map);
Name Type Description
cx JSContext * Pointer to the JS context in which garbage collection is happening.
map JSObjectMap * The map to destroy.

 

Document Tags and Contributors

 Last updated by: arai,