aboutsummaryrefslogtreecommitdiff
path: root/src/parse/functions.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/functions.c')
-rw-r--r--src/parse/functions.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/parse/functions.c b/src/parse/functions.c
index 4293b43b..39444762 100644
--- a/src/parse/functions.c
+++ b/src/parse/functions.c
@@ -18,7 +18,6 @@
#include "types.h"
#include "utils.h"
-public
arg_ast_t *parse_args(parse_ctx_t *ctx, const char **pos) {
arg_ast_t *args = NULL;
for (;;) {
@@ -74,7 +73,6 @@ arg_ast_t *parse_args(parse_ctx_t *ctx, const char **pos) {
return args;
}
-public
ast_t *parse_func_def(parse_ctx_t *ctx, const char *pos) {
const char *start = pos;
if (!match_word(&pos, "func")) return NULL;
@@ -146,7 +144,6 @@ ast_t *parse_convert_def(parse_ctx_t *ctx, const char *pos) {
.cache = cache_ast, .is_inline = is_inline);
}
-public
ast_t *parse_lambda(parse_ctx_t *ctx, const char *pos) {
const char *start = pos;
if (!match_word(&pos, "func")) return NULL;