Make Map_Info store pointers to cell info rather than inline

This commit is contained in:
gingerBill
2022-11-08 12:18:36 +00:00
parent 6dd4d1a924
commit ed58374964
11 changed files with 86 additions and 61 deletions
+3
View File
@@ -2851,6 +2851,9 @@ void init_core_map_type(Checker *c) {
t_map_info = find_core_type(c, str_lit("Map_Info"));
t_map_cell_info = find_core_type(c, str_lit("Map_Cell_Info"));
t_raw_map = find_core_type(c, str_lit("Raw_Map"));
t_map_info_ptr = alloc_type_pointer(t_map_info);
t_map_cell_info_ptr = alloc_type_pointer(t_map_cell_info);
}
void init_preload(Checker *c) {