attempt to implement the assignment expression using :=
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-01-06 13:15:15 +09:00
parent 9bc90c4d60
commit 3ea6b92b5f
7 changed files with 92 additions and 26 deletions

View File

@ -126,6 +126,7 @@ static char* synerrstr[] =
". disallowed",
", disallowed",
": disallowed",
":= disallowed",
"no value after ,",
"no value after :",
"no separator between array/dictionary elements",
@ -160,8 +161,6 @@ static char* synerrstr[] =
"unbalanced key/value pair",
"unbalanced parenthesis/brace/bracket",
"unexpected semicolon",
"empty x-list",
"empty m-list",
"block expression expected"
"block expression disallowed"
};