| |||||||||||||||||||||
SummaryCalls a function-valued property belonging to an object. | |||||||||||||||||||||
SyntaxJSBool JS_CallFunctionName(JSContext *cx, JSObject *obj, const char *name, uintN argc, jsval *argv, jsval *rval);
| |||||||||||||||||||||
DescriptionJS_CallFunctionName executes a function-valued property, name , belonging to a specified JS object, obj .
In
If the called function executes successfully,
| |||||||||||||||||||||
NotesTo call a function stored in ajsval , use JS_CallFunctionValue .
| |||||||||||||||||||||
See Also
|