improve performance by using an inline locals array in hashmaps

This commit is contained in:
William Bell
2025-09-08 02:21:26 +01:00
parent 23c4a7ebd1
commit d46a6dc209
8 changed files with 60 additions and 27 deletions

View File

@@ -168,7 +168,7 @@ char *read_all_stdin(size_t *out_len) {
int shell() {
Stack *main_scope = create_scope(Global_Scope);
Stack *main_scope = create_scope(Global_Scope, true);
if (!isatty(STDIN_FILENO)) {
RuntimeState runtime_state;