fixed wrong semicolon handling and enhanced eol/semiclon handling
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-21 02:23:19 +09:00
parent f88c3a9c1f
commit e3120e20a2
6 changed files with 43 additions and 12 deletions

9
t/feed-03.err Normal file
View File

@ -0,0 +1,9 @@
## semicolon inside #{} must raise a syntax error
a := #{
"k1":
"hello k1\n",
"k2":
"hello k2\n"; ##ERROR: syntax error - unexpected semicolon
};