diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 01:00:13 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 01:00:13 -0400 |
| commit | 3cf0d5f0bee3787a3d46126d5c0e1310e35a7cb9 (patch) | |
| tree | 035e97eaaf2d722daa6ffa0d447d0a8c34a5f0b9 /src/parse/parse.h | |
| parent | c859ed479227cee2cecedb83d74a40acf9758051 (diff) | |
Split out text parsing logic
Diffstat (limited to 'src/parse/parse.h')
| -rw-r--r-- | src/parse/parse.h | 4 |
1 files changed, 0 insertions, 4 deletions
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); |
