From f905f1e4d1c77410931dc5ebfd8bcf466864a3e2 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 19 Jan 2026 20:51:26 -0500 Subject: Allow parsing `123.foo()` as `(123).foo()` --- src/parse/utils.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/parse/utils.h') diff --git a/src/parse/utils.h b/src/parse/utils.h index b8fb0756..89b1cc82 100644 --- a/src/parse/utils.h +++ b/src/parse/utils.h @@ -22,6 +22,7 @@ bool indent(parse_ctx_t *ctx, const char **pos); const char *eol(const char *str); PUREFUNC int64_t get_indent(parse_ctx_t *ctx, const char *pos); const char *unescape(parse_ctx_t *ctx, const char **out); +bool is_xid_start_next(const char *pos); bool is_xid_continue_next(const char *pos); bool newline_with_indentation(const char **out, int64_t target); bool match_separator(parse_ctx_t *ctx, const char **pos); -- cgit v1.2.3