updated the parser to require a colone after a key for @{}
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-11-18 18:49:38 +09:00
parent 249a78bb87
commit 24c91d3376
3 changed files with 23 additions and 6 deletions

View File

@@ -37,3 +37,10 @@ BEGIN {
BEGIN {
@nil = 10 ##ERROR: invalid assignment statement
}
---
BEGIN {
@{};
@{ "hello", "world } ##ERROR: colon expected in place of ','
}