macro(match): add guard-literal-OR smoke (AST no PeekExpr + VM output); stabilize smoke robustness; LLVM PHI hygiene now passing for assign/print/match_literal

This commit is contained in:
Selfhosting Dev
2025-09-20 05:34:23 +09:00
parent 14122c1e55
commit 5a2f04be95
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,8 @@
local d = 2
local r = match d {
1 if (1 < 2) => 10
2 if (2 < 3) => 20
_ => 30
}
print(r)