Skip to content

Commit fba12e6

Browse files
committed
chore: show $elements$ member of hash table types first, not last
1 parent 8d8423a commit fba12e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/variables.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4846,7 +4846,7 @@ class HTABSpecialMember extends RealVariable {
48464846
return members;
48474847
}
48484848

4849-
members.push(new HTABElementsMember(this, entryType));
4849+
members.unshift(new HTABElementsMember(this, entryType));
48504850
return members;
48514851
}
48524852
}
@@ -5040,7 +5040,7 @@ class SimplehashMember extends RealVariable {
50405040
return members;
50415041
}
50425042

5043-
members.push(new SimplehashElementsMember(this));
5043+
members.unshift(new SimplehashElementsMember(this));
50445044
return members;
50455045
}
50465046

0 commit comments

Comments
 (0)