diff --git a/Codegen.jai b/Codegen.jai index a755843..37075b4 100644 --- a/Codegen.jai +++ b/Codegen.jai @@ -479,4 +479,4 @@ codegen :: (ast_root : *AST_Node, checker_result : Semantic_Check_Result, output } #scope_module -#import "nbrutil"; +#import "ncore"; diff --git a/Semantic_Analysis.jai b/Semantic_Analysis.jai index 63d4f44..99d7669 100644 --- a/Semantic_Analysis.jai +++ b/Semantic_Analysis.jai @@ -8,7 +8,7 @@ // [x] Improve error reporting on mismatched overloads when types don't match, but arity does // [x] Improve error reporting for type mismatches in general. It seems like the expect node is not always correct. -#import "nbrutil"; +#import "ncore"; #import "Hash_Table"; #import "String";