This article covers features introduced in SpiderMonkey 1.8.5
Please provide a description for this function.
Syntax
JSFunction * JS_CompileUCFunctionForPrincipalsVersion(JSContext *cx,
    JSObject *obj, JSPrincipals *principals, const char *name, unsigned int nargs, 
    const char **argnames, const jschar *chars, size_t length, const char *filename,
    unsigned int lineno, JSVersion version);
| Name | Type | Description | 
|---|---|---|
| cx | JSContext * | The context. Requires request. In a JS_THREADSAFEbuild, the caller must be in a request on thisJSContext. | 
| obj | JSObject * | |
| principals | JSPrincipals * | |
| name  | const char * | |
| nargs | unsigned int | |
| argnames | const char ** | |
| chars | const jschar * | |
| length | size_t | |
| filename | const char * | |
| lineno | unsigned int | |
| version | JSVersion | 
Description
Please provide a description.
See Also
Please provide a description.