Hacky kwarg implementation

This commit is contained in:
Bruce Hill 2024-02-12 01:48:45 -05:00
parent 26c89b77db
commit e5cebad467
2 changed files with 6 additions and 2 deletions

View File

@ -36,8 +36,8 @@ libnext.so: metamethods/cord.o util.o SipHash/halfsiphash.o
SipHash/halfsiphash.c:
git submodule update --init --recursive
tags: $(wildcard **/*.[ch])
ctags **/*.[ch]
tags:
ctags *.[ch] **/*.[ch]
clean:
rm -f nextlang *.o

View File

@ -215,6 +215,10 @@ CORD compile(ast_t *ast)
return CORD_cat_char(code, ')');
}
// Lambda,
case KeywordArg: {
auto kwarg = Match(ast, KeywordArg);
return CORD_asprintf(".%s=%r", kwarg->name, compile(kwarg->arg));
}
// KeywordArg,
case If: {
auto if_ = Match(ast, If);