List type and generic base type, char wrapper type

This commit is contained in:
vegowotenks 2024-10-10 18:53:40 +02:00
parent 647f739d08
commit 471cf679cd
6 changed files with 124 additions and 5 deletions

View file

@ -19,6 +19,10 @@ struct Interpreter_s {
DynamicArray* tokens;
DynamicArray call_frames; // stores CallFrame
// global stuff
ObjectType* implicit_char_type;
ObjectType* implicit_base_type;
};
int Interpreter_Create(Interpreter* self, DynamicArray* tokens);