Expression statements and assignemnts are working

This commit is contained in:
2022-08-14 19:57:15 +01:00
parent e9ab6f3f96
commit 4aa6f75ea7
7 changed files with 112 additions and 50 deletions

View File

@@ -14,7 +14,7 @@ typedef struct Interpreter {
unsigned char* bytecode;
int length;
int count;
LiteralArray literalCache; //read-only - built from the bytecode
LiteralArray literalCache; //read-only - built from the bytecode, refreshed each time new bytecode is provided
//operation
Scope* scope;