1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-26 04:04:49 +00:00

initial slotsyms implementation

This commit is contained in:
Jona Ekenberg
2023-02-01 09:39:24 +01:00
parent dacbe29771
commit 88813c4f87
8 changed files with 162 additions and 1 deletions

View File

@@ -218,6 +218,7 @@ JanetFuncDef *janet_funcdef_alloc(void) {
def->closure_bitset = NULL;
def->flags = 0;
def->slotcount = 0;
def->slotsyms = 0;
def->arity = 0;
def->min_arity = 0;
def->max_arity = INT32_MAX;