From 75376335580c539512d459292d73e8ad4d7fe1af Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 25 Aug 2025 00:53:00 -0400 Subject: Split out container type parsing --- src/parse/parse.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/parse/parse.h') diff --git a/src/parse/parse.h b/src/parse/parse.h index ece99ea9..c0eff43c 100644 --- a/src/parse/parse.h +++ b/src/parse/parse.h @@ -25,7 +25,6 @@ type_ast_t *parse_set_type(parse_ctx_t *ctx, const char *pos); type_ast_t *parse_table_type(parse_ctx_t *ctx, const char *pos); type_ast_t *parse_type(parse_ctx_t *ctx, const char *pos); type_ast_t *parse_type_name(parse_ctx_t *ctx, const char *pos); -ast_t *parse_list(parse_ctx_t *ctx, const char *pos); ast_t *parse_assignment(parse_ctx_t *ctx, const char *pos); ast_t *parse_block(parse_ctx_t *ctx, const char *pos); ast_t *parse_bool(parse_ctx_t *ctx, const char *pos); @@ -54,13 +53,11 @@ ast_t *parse_path(parse_ctx_t *ctx, const char *pos); ast_t *parse_reduction(parse_ctx_t *ctx, const char *pos); ast_t *parse_repeat(parse_ctx_t *ctx, const char *pos); ast_t *parse_return(parse_ctx_t *ctx, const char *pos); -ast_t *parse_set(parse_ctx_t *ctx, const char *pos); ast_t *parse_skip(parse_ctx_t *ctx, const char *pos); ast_t *parse_stack_reference(parse_ctx_t *ctx, const char *pos); ast_t *parse_statement(parse_ctx_t *ctx, const char *pos); ast_t *parse_stop(parse_ctx_t *ctx, const char *pos); ast_t *parse_struct_def(parse_ctx_t *ctx, const char *pos); -ast_t *parse_table(parse_ctx_t *ctx, const char *pos); ast_t *parse_term(parse_ctx_t *ctx, const char *pos); ast_t *parse_term_no_suffix(parse_ctx_t *ctx, const char *pos); ast_t *parse_text(parse_ctx_t *ctx, const char *pos); -- cgit v1.2.3