1 // Logic for parsing functions
7 arg_ast_t *parse_args(parse_ctx_t *ctx, const char **pos);
8 ast_t *parse_lambda(parse_ctx_t *ctx, const char *pos);
9 ast_t *parse_func_def(parse_ctx_t *ctx, const char *pos);
10 ast_t *parse_convert_def(parse_ctx_t *ctx, const char *pos);