use hashmap in constants buffer to speed up translation time with large files

This commit is contained in:
2025-06-30 17:56:32 +01:00
parent 31f38d8ba4
commit 3adecb4eba
18 changed files with 1120882 additions and 83 deletions

View File

@@ -34,7 +34,7 @@ struct ArgonObject {
char* name;
ArgonObject *self;
ArgonObject *baseObject;
struct hashmap *fields; // dynamic fields/methods
struct hashmap_GC *fields; // dynamic fields/methods
union {
mpq_t as_number;
bool as_bool;