some cool things

This commit is contained in:
2026-06-25 18:57:53 +10:00
parent fa2c205f33
commit 9bb083a6f8
19 changed files with 4288 additions and 1 deletions

View File

@@ -439,6 +439,15 @@ struct _Ground {
GroundValue* (*get) (GroundBytecodeHeap* heap, GroundSize idx);
} Heap;
} Bytecode;
struct {
char* (*Arg)(GroundArg* arg);
char* (*Heap)(GroundBytecodeHeap* heap);
char* (*Instruction)(GroundInstruction* instruction);
char* (*Program)(GroundProgram* program);
char* (*String)(GroundString* string);
char* (*Value)(GroundValue* value);
} Stringify;
};
extern struct _Ground Ground;