Make sure named argumnets are compiled before destructured params.

This handles an edge-case when combing destructured and named
parameters that produced spurious and confusing compiler lints.
This commit is contained in:
Calvin Rose
2026-01-31 19:34:26 -06:00
parent 8481da18d0
commit 497e363401
3 changed files with 13 additions and 10 deletions
+2 -2
View File
@@ -3968,8 +3968,8 @@
(defmacro ev/gather
``
Run a number of fibers in parallel (created from `bodies`) and resume the
current fiber after they complete. Returns the gathered results in an
Create and run a number of fibers in parallel (created from `bodies`) and resume the
current fiber after they complete. Shorthand for `ev/go-gather`. Returns the gathered results in an
array.
``
[& bodies]