From c6014873d83889e4bf598f6073c771480da20b7b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 25 Aug 2025 00:45:28 -0400 Subject: Split out number parsing --- src/parse/parse.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/parse/parse.h') diff --git a/src/parse/parse.h b/src/parse/parse.h index 1e8c979f..fed78032 100644 --- a/src/parse/parse.h +++ b/src/parse/parse.h @@ -45,7 +45,6 @@ ast_t *parse_func_def(parse_ctx_t *ctx, const char *pos); ast_t *parse_heap_alloc(parse_ctx_t *ctx, const char *pos); ast_t *parse_if(parse_ctx_t *ctx, const char *pos); ast_t *parse_inline_c(parse_ctx_t *ctx, const char *pos); -ast_t *parse_int(parse_ctx_t *ctx, const char *pos); ast_t *parse_lambda(parse_ctx_t *ctx, const char *pos); ast_t *parse_lang_def(parse_ctx_t *ctx, const char *pos); ast_t *parse_extend(parse_ctx_t *ctx, const char *pos); @@ -53,7 +52,6 @@ ast_t *parse_namespace(parse_ctx_t *ctx, const char *pos); ast_t *parse_negative(parse_ctx_t *ctx, const char *pos); ast_t *parse_not(parse_ctx_t *ctx, const char *pos); ast_t *parse_none(parse_ctx_t *ctx, const char *pos); -ast_t *parse_num(parse_ctx_t *ctx, const char *pos); ast_t *parse_parens(parse_ctx_t *ctx, const char *pos); ast_t *parse_pass(parse_ctx_t *ctx, const char *pos); ast_t *parse_path(parse_ctx_t *ctx, const char *pos); -- cgit v1.2.3