| ||||||
SummaryRetrieves the object for a specified function. | ||||||
SyntaxJSObject * JS_GetFunctionObject(JSFunction *fun); | ||||||
DescriptionJS_GetFunctionObject retrieves the object for a specified function pointer, fun . All functions are associated with an underlying object. For functions you create with JS_NewFunction , the object is automatically created for you. For functions you define with JS_DefineFunction and JS_DefineFunctions , you specify the object(s) as a parameter.
| ||||||
See Also
|