Pack/tuple spread now parses in tuple-value `(..xs)` / `(..xs.field)`, tuple-type `(..F(Ts))` / `(..F(Ts.Arg))`, call-arg `f(..xs)` (already), and closure-sig `Closure(..Ts)` / `Closure(..sources.T)` positions. Design: the uniform spread node is the existing `spread_expr` (its operand sub-expression carries the projection `xs.field` and type-application `F(Ts)` shapes) rather than a new PackExpansion node — call-arg slice-spread (`..arr`) and pack-spread (`..pack`) are syntactically identical, so they must share one node, and spread_expr already serves it with working slice lowering. Closure-sig packs gain `ClosureTypeExpr.pack_projection` alongside the existing `pack_name`. Parser-only; sema/lowering land in Phase 2. 6 new parser unit tests + examples/probes/pack-expansion-parses.sx. Build + 225-suite green.
167 KiB
167 KiB