You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that getNamedMembers -> sortSymbols takes 2.5-3% of total tsgo --noEmit execution time.
I wonder if there any particular reason to sort members here? For type-checking purposes it doesn't matter whether properties are sorted or not.
Without this sorting, some tests obviously fail because they rely on error messages where the order of properties matters. So maybe property sorting should only be done when formatting error messages/suggestions?