feat: pattern bindings, empty closures, match-as-expr, string interp

Sessions 10–12 from QUALITY_PLAN:

- Pattern payload bindings (Some(value) => value) in bootstrap and selfhost
- Empty-param closures via || (tkPipePipe) with loop/return bodies
- Expression-form match: let x = match …; newline before arms
- f"…" string interpolation desugared to String_Concat + conversions
- Lexer preserves \{ \} for literal braces in f-strings
- Bootstrap fix: f"plain" strips the f prefix after escape processing
- Examples: pattern_matching, closure_control, match_let, string_interp

Selfhost-loop remains binary-identical; all examples and error goldens pass.
This commit is contained in:
2026-07-18 00:58:44 +03:00
parent f619316470
commit db41ba4d84
18 changed files with 1192 additions and 67 deletions
+35 -3
View File
@@ -1,19 +1,41 @@
// Pattern Matching — enum tags, literals, ranges, wildcard
// Pattern Matching — enum tags, payload bindings, literals, ranges, wildcard
import Std::Io::{PrintLine, PrintInt};
import Std::Test::{Test_AssertEqInt, Test_Pass};
enum Option {
Some(int),
None
}
enum Msg {
Quit,
Move(int),
Write(String)
}
func GetValue(opt: Option) -> int {
// Pattern binding: value is bound from Option::Some payload
match opt {
Option::Some(value) => opt.data.Some_0,
Option::Some(value) => value,
Option::None => 0
}
}
func DoubleSome(opt: Option) -> int {
match opt {
Option::Some(n) => n + n,
Option::None => -1
}
}
func MsgCode(m: Msg) -> int {
match m {
Msg::Quit => 0,
Msg::Move(x) => x,
Msg::Write(s) => 1
}
}
func Classify(n: int) -> int {
// literal arms + exclusive range + inclusive range + wildcard
match n {
@@ -40,6 +62,15 @@ func Main() -> int {
let opt2: Option = Option { tag: Option_None };
Test_AssertEqInt(GetValue(opt1), 42);
Test_AssertEqInt(GetValue(opt2), 0);
Test_AssertEqInt(DoubleSome(opt1), 84);
Test_AssertEqInt(DoubleSome(opt2), -1);
let m: Msg = Msg { tag: Msg_Move };
m.data.Move_0 = 7;
Test_AssertEqInt(MsgCode(m), 7);
PrintLine("opt1 value: ");
PrintInt(GetValue(opt1));
PrintLine("");
@@ -61,5 +92,6 @@ func Main() -> int {
PrintLine("color:");
PrintLine(ColorName(2));
Test_Pass("pattern_matching");
return 0;
}