Objects Initial

This commit is contained in:
IlushaShurupov 2023-07-24 21:55:19 +03:00
parent 00bc875846
commit 803ce23169
76 changed files with 7895 additions and 17 deletions

View file

@ -0,0 +1,12 @@
#pragma once
#include "interpreter/bytecode.h"
namespace obj {
struct Script {
obj::StringObject* mReadable;
ByteCode mBytecode;
void compile();
};
};