diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 12:12:02 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 12:12:02 -0400 |
| commit | 55479cbf9e4a8f36afe41d84df687f05fc7661f0 (patch) | |
| tree | 0bb00769f319716b75f5e0a3b0e73934de89aa88 /src/parse/binops.c | |
| parent | c3bcb504a07823ec8a096d34d0f4fe8dc5b27196 (diff) | |
Initial work to pass metadata for code
Diffstat (limited to 'src/parse/binops.c')
| -rw-r--r-- | src/parse/binops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/binops.c b/src/parse/binops.c index 7ccf1379..a6ac43d2 100644 --- a/src/parse/binops.c +++ b/src/parse/binops.c @@ -108,7 +108,7 @@ ast_t *parse_infix_expr(parse_ctx_t *ctx, const char *pos, int min_tightness) { else if (key) pos = key->end; } - whitespace(&pos); + whitespace(ctx, &pos); if (get_line_number(ctx->file, pos) != starting_line && get_indent(ctx, pos) < starting_indent) parser_err(ctx, pos, eol(pos), "I expected this line to be at least as indented than the line above it"); |
