Typehinting merge #50
@ -6029,7 +6029,7 @@ PH7_PRIVATE int PH7_VmIsCallable(ph7_vm *pVm, ph7_value *pValue, int CallInvoke)
|
|||||||
* Return
|
* Return
|
||||||
* TRUE if name is callable, FALSE otherwise.
|
* TRUE if name is callable, FALSE otherwise.
|
||||||
*/
|
*/
|
||||||
static int vm_builtin_is_callable(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
static int vm_builtin_is_callback(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||||
ph7_vm *pVm;
|
ph7_vm *pVm;
|
||||||
int res;
|
int res;
|
||||||
if(nArg < 1) {
|
if(nArg < 1) {
|
||||||
@ -10795,7 +10795,7 @@ static const ph7_builtin_func aVmFunc[] = {
|
|||||||
{ "func_get_args", vm_builtin_func_get_args },
|
{ "func_get_args", vm_builtin_func_get_args },
|
||||||
{ "func_get_args_byref", vm_builtin_func_get_args_byref },
|
{ "func_get_args_byref", vm_builtin_func_get_args_byref },
|
||||||
{ "function_exists", vm_builtin_func_exists },
|
{ "function_exists", vm_builtin_func_exists },
|
||||||
{ "is_callable", vm_builtin_is_callable },
|
{ "is_callback", vm_builtin_is_callback },
|
||||||
{ "get_defined_functions", vm_builtin_get_defined_func },
|
{ "get_defined_functions", vm_builtin_get_defined_func },
|
||||||
{ "register_autoload_handler", vm_builtin_register_autoload_handler },
|
{ "register_autoload_handler", vm_builtin_register_autoload_handler },
|
||||||
{ "register_shutdown_function", vm_builtin_register_shutdown_function },
|
{ "register_shutdown_function", vm_builtin_register_shutdown_function },
|
||||||
|
@ -643,7 +643,7 @@ PH7_APIEXPORT int ph7_value_is_bool(ph7_value *pVal);
|
|||||||
PH7_APIEXPORT int ph7_value_is_string(ph7_value *pVal);
|
PH7_APIEXPORT int ph7_value_is_string(ph7_value *pVal);
|
||||||
PH7_APIEXPORT int ph7_value_is_null(ph7_value *pVal);
|
PH7_APIEXPORT int ph7_value_is_null(ph7_value *pVal);
|
||||||
PH7_APIEXPORT int ph7_value_is_numeric(ph7_value *pVal);
|
PH7_APIEXPORT int ph7_value_is_numeric(ph7_value *pVal);
|
||||||
PH7_APIEXPORT int ph7_value_is_callable(ph7_value *pVal);
|
PH7_APIEXPORT int ph7_value_is_callback(ph7_value *pVal);
|
||||||
PH7_APIEXPORT int ph7_value_is_scalar(ph7_value *pVal);
|
PH7_APIEXPORT int ph7_value_is_scalar(ph7_value *pVal);
|
||||||
PH7_APIEXPORT int ph7_value_is_array(ph7_value *pVal);
|
PH7_APIEXPORT int ph7_value_is_array(ph7_value *pVal);
|
||||||
PH7_APIEXPORT int ph7_value_is_object(ph7_value *pVal);
|
PH7_APIEXPORT int ph7_value_is_object(ph7_value *pVal);
|
||||||
|
Loading…
Reference in New Issue
Block a user