1 // Logic for parsing numbers 2 #pragma once 3 4 #include "../ast.h" 5 #include "context.h" 6 7 ast_e match_binary_operator(const char **pos); 8 ast_t *parse_infix_expr(parse_ctx_t *ctx, const char *pos, int min_tightness);