ast_call needs to set its func member

This commit is contained in:
Wolfgang Bumiller 2012-07-04 14:41:39 +02:00
parent 812084ad72
commit d259e75dc4

2
ast.c
View file

@ -316,6 +316,8 @@ ast_call* ast_call_new(lex_ctx ctx,
MEM_VECTOR_INIT(self, params);
self->func = funcexpr;
return self;
}
MEM_VEC_FUNCTIONS(ast_call, ast_expression*, params)