fix: iteration order for namespace declarations
This commit is contained in:
parent
f5eac49729
commit
2ee43514b4
1 changed files with 1 additions and 1 deletions
|
|
@ -219,7 +219,7 @@ pub const Module = struct {
|
||||||
|
|
||||||
pub const Namespace = struct {
|
pub const Namespace = struct {
|
||||||
parent: ?*Namespace,
|
parent: ?*Namespace,
|
||||||
decls: std.AutoHashMapUnmanaged(InternPool.Index, Decl),
|
decls: std.AutoArrayHashMapUnmanaged(InternPool.Index, Decl),
|
||||||
|
|
||||||
pub const Decl = struct {
|
pub const Decl = struct {
|
||||||
tag: Tag,
|
tag: Tag,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue