From 47d38fb5ac183180edd297830261cedd8afee2d3 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 25 Aug 2025 01:03:31 -0400 Subject: Split out binops --- src/parse/parse.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/parse/parse.h') 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); -- cgit v1.2.3