Module relative folders working

This commit is contained in:
Krzosa Karol
2022-06-27 10:24:58 +02:00
parent 6644a2c5ae
commit 15d452cae3
8 changed files with 42 additions and 21 deletions

View File

@@ -240,7 +240,8 @@ enum Ast_Module_State{
};
struct Ast_Module: Ast_Scope{
Ast_Module_State state;
Ast_Module_State state;
String base_folder;
Array<Ast_File *> all_loaded_files;
};