From bfb829b1fe85911a84454d6da1948910f42b2c5c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 25 Aug 2025 01:29:58 -0400 Subject: Rename parse -> expressions --- src/parse/parse.h | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/parse/parse.h (limited to 'src/parse/parse.h') diff --git a/src/parse/parse.h b/src/parse/parse.h deleted file mode 100644 index c7c97f24..00000000 --- a/src/parse/parse.h +++ /dev/null @@ -1,22 +0,0 @@ -// Parsing logic -#pragma once - -#include "../ast.h" -#include "context.h" - -ast_t *parse_expr_str(const char *str); - -ast_t *parse_bool(parse_ctx_t *ctx, const char *pos); -ast_t *parse_expr(parse_ctx_t *ctx, const char *pos); -ast_t *parse_extended_expr(parse_ctx_t *ctx, const char *pos); -ast_t *parse_heap_alloc(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_parens(parse_ctx_t *ctx, const char *pos); -ast_t *parse_reduction(parse_ctx_t *ctx, const char *pos); -ast_t *parse_stack_reference(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_var(parse_ctx_t *ctx, const char *pos); -ast_t *parse_deserialize(parse_ctx_t *ctx, const char *pos); -- cgit v1.2.3