updating the compiler/reader to handle binops more specially

This commit is contained in:
2025-09-21 17:13:47 +09:00
parent 013dbb9e5c
commit 5819be7fa5
15 changed files with 350 additions and 128 deletions

View File

@ -115,6 +115,7 @@ static const char* synerrstr[] =
"} expected",
"| expected",
"identifier expected",
"string expected",
"byte too small or too large",
"nesting level too deep",
@ -161,6 +162,7 @@ static const char* synerrstr[] =
"break outside loop",
"invalid callable",
"invalid message",
"unbalanced key/value pair",
"unbalanced parenthesis/brace/bracket",
"unexpected semicolon",