diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 01:03:31 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 01:03:31 -0400 |
| commit | 47d38fb5ac183180edd297830261cedd8afee2d3 (patch) | |
| tree | 2ad93b15686a9c7d94e163d9a5f46350374f4571 /src/parse/parse.h | |
| parent | 3cf0d5f0bee3787a3d46126d5c0e1310e35a7cb9 (diff) | |
Split out binops
Diffstat (limited to 'src/parse/parse.h')
| -rw-r--r-- | src/parse/parse.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parse/parse.h b/src/parse/parse.h index b3a36f72..8af16e1b 100644 --- a/src/parse/parse.h +++ b/src/parse/parse.h @@ -8,7 +8,6 @@ ast_t *parse(const char *str); ast_t *parse_expression(const char *str); -ast_e match_binary_operator(const char **pos); ast_t *parse_comprehension_suffix(parse_ctx_t *ctx, ast_t *expr); ast_t *parse_field_suffix(parse_ctx_t *ctx, ast_t *lhs); ast_t *parse_fncall_suffix(parse_ctx_t *ctx, ast_t *fn); @@ -40,7 +39,6 @@ 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_pass(parse_ctx_t *ctx, const char *pos); -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); |
