Replace the bare-paren tuple grammar with explicit, position-unambiguous
forms, mirroring how structs work:
type `(A, B)` -> `Tuple(A, B)` (named keeps `:`)
value `(a, b)` -> `.(a, b)` (named uses `=`)
typed (new) -> `Tuple(A, B).(a, b)` (like `Point.{...}`)
failable `-> (T, !)` -> `-> T !`
`-> (T1, T2, !)`-> `-> Tuple(T1, T2) !` (channel outside Tuple)
Bare `(...)` is now grouping only, everywhere; a comma in bare parens is a
hard error with a migration hint. Grouping, function types `(A, B) -> R`,
param lists, lambdas, and match bindings are unaffected.
`Tuple(...)` is strictly a TYPE in every position (including `size_of` /
`type_info` args); a tuple VALUE comes only from `.(...)` (anonymous) or
`Tuple(...).(...)` (explicitly typed). A bare `Tuple(1, 2)` is a tuple
type with non-type elements -> rejected.
The ~110 tuple-bearing corpus files were migrated with a one-shot
AST-aware migrator (the `sx migrate` tool from the prior commit, removed
here). New examples: 0130 (new syntax), 0131 (typed construction), 1060
(named-tuple failable return). 1116 golden updated for the new hint text.
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
// Value-carrying failable functions (ERR step E2.1a — the producer side of the
|
|
// error-channel tuple ABI). A `-> (T, !E)` function returns EITHER a value OR
|
|
// an error: `return v;` yields the success tuple `{v, 0}` (the compiler appends
|
|
// the no-error slot), and `raise error.X` yields `{undef, tag}` (value slot
|
|
// undefined, error slot = the tag). Today the result is consumed by
|
|
// destructuring `v, err := f()` (which extracts both slots); the value-carrying
|
|
// `try` / `catch` consumers land in E2.1b.
|
|
|
|
#import "modules/std.sx";
|
|
|
|
E :: error { Bad, Empty }
|
|
|
|
parse :: (n: i32) -> i32 !E {
|
|
if n < 0 { raise error.Bad; }
|
|
if n == 0 { raise error.Empty; }
|
|
return n * 10; // success → {n*10, 0}
|
|
}
|
|
|
|
main :: () -> i32 {
|
|
r : i32 = 0;
|
|
|
|
// The value slot is live only where the error is proven absent (ERR E1.8):
|
|
// read `v1` under an `if !e1` guard, not after a bare tag-compare.
|
|
v1, e1 := parse(5); // success → v1 = 50, e1 = no error
|
|
if !e1 { r = r + v1; } // success → +50
|
|
|
|
v2, e2 := parse(-1); // Bad
|
|
if e2 == error.Bad { r = r + 7; } // true → +7
|
|
if e2 == error.Empty { r = r + 200; } // false
|
|
|
|
v3, e3 := parse(0); // Empty
|
|
if e3 == error.Empty { r = r + 3; } // true → +3
|
|
|
|
print("value-failable result: {}\n", r); // 50 + 7 + 3 = 60
|
|
return r;
|
|
}
|