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_DeepFreezeObject

This article needs a technical review. How you can help.

This article covers features introduced in SpiderMonkey 1.8.5

Freeze obj, and all objects it refers to, recursively.

Syntax

bool
JS_DeepFreezeObject(JSContext *cx, JS::Handle<JSObject*> obj);
Name Type Description
cx JSRuntime * The context. Requires request. In a JS_THREADSAFE build, the caller must be in a request on this JSContext.
obj JS::Handle<JSObject*> An object to freeze.

Description

JS_DeepFreezeObject freezes obj, and all objects it refers to, recursively. This will not recurse through non-extensible objects, on the assumption that those are already deep-frozen.

See also

Document Tags and Contributors

 Contributors to this page: kscarfone, arai, fscholz, ethertank, trevorh, markg
 Last updated by: kscarfone,