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.

JS_DestroyScript

Obsolete since JSAPI 8
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.

Free a compiled script that is no longer needed.

Syntax

void
JS_DestroyScript(JSContext *cx, JSScript *script);
Name Type Description
cx JSContext * The context in which to destroy the script. Requires request. In a JS_THREADSAFE build, the caller must be in a request on this JSContext.
script JSScript * The script to destroy.

Description

JS_DestroyScript destroys the given compiled script, freeing the memory allocated to it. The script must not be currently executing (in any context, at any level of the stack) and must not be used again afterwards.

At present, this function has no effect; the JSScript lives for as long as its script object lives. See JS_NewScriptObject for details.

See Also

Document Tags and Contributors

 Contributors to this page: arai, fscholz, tschneidereit, Jimb, Jorend, Dria, MMondor
 Last updated by: arai,