MCPcopy Create free account
hub / github.com/amule-project/amule / func_call_add_expr

Function func_call_add_expr

src/webserver/src/php_syntree.cpp:1020–1028  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1018}
1019
1020void func_call_add_expr(PHP_VAR_NODE *paramlist, PHP_EXP_NODE *arg, int byref)
1021{
1022 PHP_VAR_NODE *node = array_push_back(&paramlist->value);
1023 node->value.type = PHP_VAL_INT_DATA;
1024 node->value.ptr_val = arg;
1025 if ( byref ) {
1026 node->flags |= PHP_VARFLAG_BYREF;
1027 }
1028}
1029
1030void php_add_native_func(PHP_BLTIN_FUNC_DEF *def)
1031{

Callers 1

yyparseFunction · 0.85

Calls 1

array_push_backFunction · 0.85

Tested by

no test coverage detected