Objects Initial
This commit is contained in:
parent
00bc875846
commit
803ce23169
76 changed files with 7895 additions and 17 deletions
12
Objects/public/interpreter/script.h
Normal file
12
Objects/public/interpreter/script.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include "interpreter/bytecode.h"
|
||||
|
||||
namespace obj {
|
||||
struct Script {
|
||||
obj::StringObject* mReadable;
|
||||
ByteCode mBytecode;
|
||||
|
||||
void compile();
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue