le objects now go to the the bytecode

This commit is contained in:
2026-07-05 18:25:49 +10:00
parent 05733c693c
commit 820fd618a3
2 changed files with 67 additions and 4 deletions

View File

@@ -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 {