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

@@ -271,7 +271,7 @@ function main()
tap_ensure (((10,30,30) in c), 0, @SCRIPTNAME, @SCRIPTLINE);
c = @{ "abc", 10, "def", 20.9 };
c = @{ "abc": 10, "def": 20.9 };
tap_ensure (c["abc"], 10, @SCRIPTNAME, @SCRIPTLINE);
tap_ensure (c["def"], 20.9, @SCRIPTNAME, @SCRIPTLINE);
}