lang: update bluelib api usage

This commit is contained in:
2025-11-06 10:38:32 +00:00
parent b26c37c349
commit 4386965cd9
40 changed files with 351 additions and 271 deletions

View File

@@ -1,9 +1,9 @@
#ifndef CODEGEN_VAR_MAP_H_
#define CODEGEN_VAR_MAP_H_
#include <blue/ds/hashmap.h>
#include <ivy/status.h>
struct b_hashmap;
struct mie_value;
struct ivy_ast_node;
@@ -20,7 +20,7 @@ struct codegen_var {
};
struct codegen_var_map {
struct b_hashmap *m_map;
b_hashmap *m_map;
};
extern enum ivy_status codegen_var_map_init(struct codegen_var_map *map);