fromex = &self->expression;
selfex = &cp->expression;
selfex->variadic = fromex->variadic;
+ selfex->count = fromex->count;
for (i = 0; i < vec_size(fromex->params); ++i) {
ast_value *v = ast_value_copy(fromex->params[i]);
if (!v) {
fromex = &other->expression;
selfex = &self->expression;
selfex->variadic = fromex->variadic;
+ selfex->count = fromex->count;
for (i = 0; i < vec_size(fromex->params); ++i) {
ast_value *v = ast_value_copy(fromex->params[i]);
if (!v)
selfex->next = NULL;
selfex->variadic = fromex->variadic;
+ selfex->count = fromex->count;
for (i = 0; i < vec_size(fromex->params); ++i) {
ast_value *v = ast_value_copy(fromex->params[i]);
if (!v) {