removed the tgt argument values to syntax error formatting function

This commit is contained in:
2025-10-19 12:24:15 +09:00
parent 8c6235be16
commit 31a673e185
10 changed files with 356 additions and 392 deletions

View File

@ -1,3 +1,12 @@
continue 99 ##ERROR: syntax error - excessive argument to 'continue' around '99'
---
break "hello" 20 ##ERROR: syntax error - excessive argument to 'break' around 'hello'
---
return ##ERROR: syntax error - no value specified for 'return'
---