Entry: JS_GetFunctionName (Function)
Summary: Retrieves the given name for a specified function.
Syntax:
const char * JS_GetFunctionName(JSFunction *fun);
Description:
JS_GetFunctionName retrieves the function name associated with a function pointer, fun. The return value is either the name of a function, or the string "anonymous", which indicates that the function was not assigned a name when created.
See also:
|
|
|