This article covers features introduced in SpiderMonkey 1.8.5
Please provide a description for this function.
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_THREADSAFE build, the caller must be in a request on this JSContext . |
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 |
Please provide a description.
Please provide a description.