Update c++ codegen

This commit is contained in:
2025-10-04 10:15:17 -04:00
parent 0a820a9f71
commit 44063a62fa
2 changed files with 10 additions and 5 deletions
+1
View File
@@ -14,6 +14,7 @@ char const* desc_Ident = "identifier";
struct Ident {
Token token;
Entity *entity;
u32 hash;
};
char const* desc_Implicit = "implicit";
+9 -5
View File
@@ -5,11 +5,15 @@ These are not to be used directly. They are parsed by gen_src.cpp
typedef BasicType Basic;
struct Named {
String name;
Type *base;
Entity *type_name; /* Entity_TypeName */
};
typedef TypeNamed Named;
// struct Named {
// String name;
// Type *base;
// Entity *type_name; /* Entity_TypeName */
// BlockingMutex gen_types_data_mutex;
// GenTypesData *gen_types_data;
// };
struct Generic {
i64 id;