fix: iteration order for namespace declarations

This commit is contained in:
Brett Broadhurst 2026-03-30 17:02:05 -06:00
parent f5eac49729
commit 2ee43514b4
Failed to generate hash of commit

View file

@ -219,7 +219,7 @@ pub const Module = struct {
pub const Namespace = struct {
parent: ?*Namespace,
decls: std.AutoHashMapUnmanaged(InternPool.Index, Decl),
decls: std.AutoArrayHashMapUnmanaged(InternPool.Index, Decl),
pub const Decl = struct {
tag: Tag,