Add +++= operator.

This commit is contained in:
Christoffer Lerno
2025-09-22 01:51:25 +02:00
committed by Christoffer Lerno
parent 122dbb3668
commit 44d736a537
11 changed files with 38 additions and 2 deletions

View File

@@ -2173,7 +2173,8 @@ ParseRule rules[TOKEN_EOF + 1] = {
[TOKEN_REAL] = { parse_double, NULL, PREC_NONE },
[TOKEN_OR] = { NULL, parse_binary, PREC_OR },
[TOKEN_CT_OR] = { NULL, parse_binary, PREC_OR },
[TOKEN_CT_CONCAT] = { NULL, parse_binary, PREC_MULTIPLICATIVE },
[TOKEN_CT_CONCAT] = { NULL, parse_binary, PREC_ADDITIVE },
[TOKEN_CT_CONCAT_ASSIGN] = { NULL, parse_binary, PREC_ASSIGNMENT },
[TOKEN_AND] = { parse_unary_expr, parse_binary, PREC_AND },
[TOKEN_CT_AND] = { parse_unary_expr, parse_binary, PREC_AND },
[TOKEN_EQ] = { NULL, parse_binary, PREC_ASSIGNMENT },