aboutsummaryrefslogtreecommitdiff
path: root/src/parse/parse.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-25 00:53:00 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-25 00:53:00 -0400
commit75376335580c539512d459292d73e8ad4d7fe1af (patch)
tree4594eccfef6c9d02b51427c61b74d282c91d61b1 /src/parse/parse.h
parent1f93e82303f19029394c3e1d2c375c23d56a6498 (diff)
Split out container type parsing
Diffstat (limited to 'src/parse/parse.h')
-rw-r--r--src/parse/parse.h3
1 files changed, 0 insertions, 3 deletions
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);