Added variadic functions

TOKEN_DOT_DOT_DOT was added to the lexer
variadic.cosmo was added to the examples directory
This commit is contained in:
2020-12-26 22:01:22 -06:00
parent db8ed21746
commit 090cc62cce
7 changed files with 58 additions and 11 deletions

View File

@@ -64,6 +64,7 @@ typedef struct CObjFunction {
CChunk chunk;
int args;
int upvals;
int variadic;
CObjString *name;
CObjString *module; // name of the "module"
} CObjFunction;