compiler: start work on binary expressions & stuff

Reviewed-on: #7
Co-authored-by: tema5002 <tema5002@tuta.io>
Co-committed-by: tema5002 <tema5002@tuta.io>
This commit was merged in pull request #7.
This commit is contained in:
2026-06-09 20:11:29 +02:00
committed by Blendi
parent 8709efda7d
commit c29c2796d7
5 changed files with 191 additions and 62 deletions

View File

@@ -309,6 +309,9 @@ struct noom_LuaVM {
// Allocating objects
noomV_Object *noomV_allocObj(noom_LuaVM *vm, noomV_ObjTag tag, noom_uint_t size);
noomV_String *noomV_allocStr(noom_LuaVM *vm, const char *str, noom_uint_t len);
noomV_Function *noomV_allocFunc(noom_LuaVM *vm, const char *str, noom_uint_t len);
noomV_Function *noomV_allocFunc(noom_LuaVM *vm, const char *str, noom_uint_t len);
void noomV_freeObj(noomV_Object *obj);
#endif