changing the feed handler to recognize a symbol literal without double-quotes.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-21 00:51:19 +09:00
parent 3e6cfccb3b
commit f8c84dc2f0
3 changed files with 130 additions and 75 deletions

View File

@ -1,3 +1,15 @@
$?a ##ERROR: syntax error - '?' prohibited as first character after '$'
---
$include ##ERROR: syntax error - $include target not specified
---
$include 10 ##ERROR: syntax error - $include target expected in place of '10'
---
##
x := (+ 10 20) "aaaa"; ##ERROR: syntax error - too many rvalues
@ -67,7 +79,7 @@ printf "[%c]\n" b'★'; ##ERROR: syntax error - wrong character literal
printf "%O\n" #b[ 10 20 30 ];
printf "%010b\n" #b0101;
printf "%O\n" #bxy; ##ERROR: syntax error - neither valid radixed number nor valid directive #bxy
printf "%O\n" #bxy; ##ERROR: syntax error - neither valid radixed number nor valid directive '#bxy'
---