le objects now go to the the bytecode
This commit is contained in:
@@ -305,8 +305,17 @@ struct GroundBytecodeFunction {
|
||||
// Only for native function
|
||||
GroundType* returnType;
|
||||
};
|
||||
struct GroundBytecodeStruct {};
|
||||
struct GroundBytecodeObject {};
|
||||
|
||||
struct GroundBytecodeStruct {
|
||||
GroundBytecodeValue* values;
|
||||
size_t size;
|
||||
size_t capacity;
|
||||
};
|
||||
struct GroundBytecodeObject {
|
||||
GroundBytecodeValue* values;
|
||||
size_t size;
|
||||
size_t capacity;
|
||||
};
|
||||
|
||||
struct GroundBytecodeValue {
|
||||
union {
|
||||
|
||||
Reference in New Issue
Block a user