| ||||||||||||||||||||||||||||||
SummaryCreates a JS function from a Unicode-encoded character string. | ||||||||||||||||||||||||||||||
SyntaxJSFunction * JS_CompileUCFunction(JSContext *cx, JSObject *obj, const char *name, uintN nargs, const char **argnames, const jschar *chars, size_t length, const char *filename, uintN lineno);
| ||||||||||||||||||||||||||||||
DescriptionJS_CompileUCFunction compiles a function from a Unicode-encoded character string, chars , and associated it with a JS object, obj .
If a function compiles successfully,
| ||||||||||||||||||||||||||||||
See Also
|