12 lines
No EOL
172 B
C++
12 lines
No EOL
172 B
C++
#pragma once
|
|
|
|
#include "interpreter/ByteCode.hpp"
|
|
|
|
namespace tp::obj {
|
|
struct Script {
|
|
StringObject* mReadable;
|
|
ByteCode mBytecode;
|
|
|
|
void compile();
|
|
};
|
|
} |