feat: capture-less anonymous functions (closures)

Implement MVP closures — anonymous functions without captures.

Syntax:
  |a: int, b: int| -> int { return a + b; }

Changes:
- ast.bux + ast.nim: add ekClosure AST node
- parser.bux + parser.nim: parse |params| -> Ret { body }
- sema.bux + sema.nim: type-check closure params/body, return tyFunc
- hir_lower.bux + hir_lower.nim: generate __closure_N function + hAddrOf
- lir_c_backend.nim: fix function-pointer variable declaration (cParamDecl)
- C backend: closures compile to global functions with unique names

Test: _test_closure/src/Main.bux
- Closure as variable
- Closure passed to higher-order function
- Address of named function as function pointer

Both bootstrap and selfhost compilers build and pass the test.
This commit is contained in:
2026-06-09 20:24:10 +03:00
parent 34504d1647
commit c83f6d5994
16 changed files with 2290 additions and 8 deletions
+79
View File
@@ -384,10 +384,89 @@ func parserParsePrimary(p: *Parser) -> *Expr {
return e;
}
// Closure: |params| -> Ret { body }
if kind == tkPipe {
return parserParseClosure(p);
}
parserEmitDiag(p, line, col, "expected expression");
return parserMakeExpr(ekLiteral, line, col);
}
// ---------------------------------------------------------------------------
// Closure: |params| -> Ret { body }
// ---------------------------------------------------------------------------
func parserParseClosure(p: *Parser) -> *Expr {
let line: uint32 = parserCurToken(p).line;
let col: uint32 = parserCurToken(p).column;
discard parserExpect(p, tkPipe, "expected '|' to start closure params");
let e: *Expr = parserMakeExpr(ekClosure, line, col);
let params: *Decl = bux_alloc(sizeof(Decl)) as *Decl;
params.kind = dkFunc;
params.paramCount = 0;
// Parse params: name: Type
while !parserCheck(p, tkPipe) && parserPeek(p, 0) != tkEndOfFile {
while parserCheck(p, tkNewLine) || parserCheck(p, tkSemicolon) {
discard parserAdvance(p);
}
if parserCheck(p, tkPipe) || parserPeek(p, 0) == tkEndOfFile {
break;
}
if params.paramCount >= 9 { break; }
let nameTok: LexToken = parserExpectIdentOrKeyword(p, "expected parameter name in closure");
discard parserExpect(p, tkColon, "expected ':' in closure parameter");
let ptype: *TypeExpr = parserParseType(p);
let idx: int = params.paramCount;
if idx == 0 {
params.param0.name = nameTok.text;
params.param0.refParamType = ptype;
} else if idx == 1 {
params.param1.name = nameTok.text;
params.param1.refParamType = ptype;
} else if idx == 2 {
params.param2.name = nameTok.text;
params.param2.refParamType = ptype;
} else if idx == 3 {
params.param3.name = nameTok.text;
params.param3.refParamType = ptype;
} else if idx == 4 {
params.param4.name = nameTok.text;
params.param4.refParamType = ptype;
} else if idx == 5 {
params.param5.name = nameTok.text;
params.param5.refParamType = ptype;
} else if idx == 6 {
params.param6.name = nameTok.text;
params.param6.refParamType = ptype;
} else if idx == 7 {
params.param7.name = nameTok.text;
params.param7.refParamType = ptype;
} else if idx == 8 {
params.param8.name = nameTok.text;
params.param8.refParamType = ptype;
}
params.paramCount = params.paramCount + 1;
if parserMatch(p, tkComma) { continue; }
break;
}
discard parserExpect(p, tkPipe, "expected '|' to close closure params");
e.closureParams = params;
// Optional return type: -> Type
if parserMatch(p, tkArrow) {
e.refType = parserParseType(p);
}
// Body: { ... }
e.refBlock = parserParseBlock(p);
return e;
}
// ---------------------------------------------------------------------------
// Postfix: call, index, field access, as, is, ?
// ---------------------------------------------------------------------------