mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-27 06:08:13 +00:00
Implement a new StringInterner
This commit is contained in:
@@ -424,9 +424,10 @@ struct AstSplitArgs {
|
||||
|
||||
#define AST_KINDS \
|
||||
AST_KIND(Ident, "identifier", struct { \
|
||||
Token token; \
|
||||
std::atomic<Entity *> entity; \
|
||||
u32 hash; \
|
||||
Token token; \
|
||||
std::atomic<Entity *> entity; \
|
||||
u32 hash; \
|
||||
InternedString interned; \
|
||||
}) \
|
||||
AST_KIND(Implicit, "implicit", Token) \
|
||||
AST_KIND(Uninit, "uninitialized value", Token) \
|
||||
|
||||
Reference in New Issue
Block a user