JS_SetVersionForCompartment

This article covers features introduced in SpiderMonkey 31

Configure a JSCompartment to use a specific version of the JavaScript language.

Syntax

void
JS_SetVersionForCompartment(JSCompartment *compartment, JSVersion version);
Name Type Description
compartment JSCompartment * Pointer to a JS compartment.
version JSVersion Version of JavaScript to set compartment to.

Description

JS_SetVersionForCompartment attempts to set the version of JavaScript to version for a specified compartment, compartment. The version comes from the JSVersion enumerated type.

See Also