js-on-sx: expression statements support comma operator
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 43s

This commit is contained in:
2026-05-09 10:19:24 +00:00
parent d145532afe
commit 3e8aae77d5
2 changed files with 3 additions and 1 deletions

View File

@@ -1417,7 +1417,7 @@
((jp-at? st "keyword" "switch") (jp-parse-switch-stmt st))
(else
(let
((e (jp-parse-assignment st)))
((e (jp-parse-comma-seq st)))
(do (jp-eat-semi st) (list (quote js-exprstmt) e)))))))
(define