From 3cf0d5f0bee3787a3d46126d5c0e1310e35a7cb9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 25 Aug 2025 01:00:13 -0400 Subject: Split out text parsing logic --- src/parse/parse.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/parse/parse.h') diff --git a/src/parse/parse.h b/src/parse/parse.h index 83f824db..b3a36f72 100644 --- a/src/parse/parse.h +++ b/src/parse/parse.h @@ -32,7 +32,6 @@ ast_t *parse_extern(parse_ctx_t *ctx, const char *pos); ast_t *parse_for(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_lang_def(parse_ctx_t *ctx, const char *pos); ast_t *parse_extend(parse_ctx_t *ctx, const char *pos); ast_t *parse_namespace(parse_ctx_t *ctx, const char *pos); @@ -52,12 +51,9 @@ 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_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); ast_t *parse_update(parse_ctx_t *ctx, const char *pos); ast_t *parse_use(parse_ctx_t *ctx, const char *pos); ast_t *parse_var(parse_ctx_t *ctx, const char *pos); ast_t *parse_when(parse_ctx_t *ctx, const char *pos); ast_t *parse_while(parse_ctx_t *ctx, const char *pos); ast_t *parse_deserialize(parse_ctx_t *ctx, const char *pos); -ast_list_t *_parse_text_helper(parse_ctx_t *ctx, const char **out_pos, char open_quote, char close_quote, - char open_interp, bool allow_escapes); -- cgit v1.2.3