Plumbing for index and dot notations is working

This commit is contained in:
2022-09-05 17:43:42 +01:00
parent 82c03ecb33
commit 304e1a5fb0
14 changed files with 708 additions and 29 deletions

View File

@@ -13,8 +13,8 @@ typedef struct _entry {
typedef struct LiteralDictionary {
_entry* entries;
int capacity;
int contains; //count + tombstones
int count;
int contains; //count + tombstones, for internal use
} LiteralDictionary;
void initLiteralDictionary(LiteralDictionary* dictionary);