Added a bunch more ensom stuff. Added function to static array.

This commit is contained in:
2025-10-07 16:48:30 +02:00
parent afced44abe
commit 76cd1ba957
2 changed files with 2 additions and 0 deletions

View File

@@ -2630,3 +2630,4 @@ pretty_print_symbol_table :: (ctx : *Compiler_Context, allocator : Allocator) ->
#import "Hash_Table"; #import "Hash_Table";
#import "String"; #import "String";
#import "Random"; #import "Random";
#import "Static_Array";

View File

@@ -5,6 +5,7 @@
#load "codegen.jai"; #load "codegen.jai";
#import "File_Utilities"; #import "File_Utilities";
#import "Static_Array";
/* TODO /* TODO
- [x] Remove builtin stringbuilding and replace it with ad-hoc string building when error reporting. In that case we are already building a string anyway, so we can just pass in the string builder - [x] Remove builtin stringbuilding and replace it with ad-hoc string building when error reporting. In that case we are already building a string anyway, so we can just pass in the string builder