Implemented and tested literal dictionary

This commit is contained in:
2022-08-08 07:58:30 +01:00
parent 3fb952e3c2
commit 6f4bfc0e10
8 changed files with 343 additions and 7 deletions

View File

@@ -72,4 +72,6 @@ bool _isTruthy(Literal x);
Literal _toStringLiteral(char* cstr);
//utils
char* copyString(char* original, int length);
char* copyString(char* original, int length);
bool literalsAreEqual(Literal lhs, Literal rhs);
int hashLiteral(Literal lit);