`..xs: Protocol` (a bare protocol, no `[]`, no `$`) on a variadic parameter now parses to `ast.Param.is_pack = true` — a heterogeneous protocol-constrained pack, distinct from a slice variadic (`..xs: []T`, is_pack=false) and the comptime type-pack (`..$args`, is_comptime=true). Parser-only: sema/lowering for the pack form land in Phase 2; existing forms are unaffected (zero examples used a bare non-slice variadic annotation). Adds three parser unit tests and examples/probes/pack-param-parses.sx.
23 lines
1003 B
Plaintext
23 lines
1003 B
Plaintext
// Feature 1 / Step 1.1 — pack-constrained variadic parameter PARSES.
|
|
//
|
|
// Parse-only probe. The protocol-constrained variadic `..sources: Protocol`
|
|
// (no `[]`, no `$`) now parses to an `ast.Param` with `is_pack = true`,
|
|
// distinct from a slice variadic (`..parts: []T`, `is_pack = false`) and the
|
|
// comptime type-pack (`..$args`, `is_comptime = true`). Sema/lowering for the
|
|
// pack form arrive in Phase 2 — do NOT expect this to compile/run yet.
|
|
//
|
|
// The authoritative checks are the parser unit tests in src/parser.zig
|
|
// ("parse pack-constrained variadic parameter", and the two contrast tests).
|
|
|
|
// Protocol-constrained pack (the new form):
|
|
map :: (..sources: ValueListenable) => sources;
|
|
|
|
// With a fixed prefix before the pack:
|
|
combine :: (label: string, ..sources: ValueListenable) => label;
|
|
|
|
// Contrast — slice variadic (is_pack = false):
|
|
join :: (..parts: []string) => parts;
|
|
|
|
// Contrast — comptime type pack (is_comptime = true, is_pack = false):
|
|
pick :: (..$args) => args[0];
|