We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d8423a commit fba12e6Copy full SHA for fba12e6
src/variables.ts
@@ -4846,7 +4846,7 @@ class HTABSpecialMember extends RealVariable {
4846
return members;
4847
}
4848
4849
- members.push(new HTABElementsMember(this, entryType));
+ members.unshift(new HTABElementsMember(this, entryType));
4850
4851
4852
@@ -5040,7 +5040,7 @@ class SimplehashMember extends RealVariable {
5040
5041
5042
5043
- members.push(new SimplehashElementsMember(this));
+ members.unshift(new SimplehashElementsMember(this));
5044
5045
5046
0 commit comments