Add a language.kl module which should contain builtin stuff

This commit is contained in:
Krzosa Karol
2022-06-18 19:42:59 +02:00
parent 649f37cb1b
commit c85fa02750
6 changed files with 102 additions and 78 deletions

View File

@@ -670,6 +670,10 @@ add_implicit_import(Ast_Scope *scope, Ast_Scope *add){
}
}
enum{
GLOBAL_IMPLICIT_LOAD = 1
};
function Ast_File *
register_ast_file(Token *pos, Intern_String filename, Ast_Module *module, B32 global_implicit_load){
Ast_File *file = 0;