Modules/Objects/public/interpreter/script.h
2024-11-24 22:36:45 +03:00

12 lines
No EOL
172 B
C++

#pragma once
#include "interpreter/bytecode.h"
namespace obj {
struct Script {
obj::StringObject* mReadable;
ByteCode mBytecode;
void compile();
};
};