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
A getter is a function, not a plain type, and should behave like one, even though it doesn't have wings.
The getter is converted to a readonly plain property (probably at point of declaration) as can be seen by tool tipping to x which shows (parameter) x: { readonly r: 1 | 2; readonly v: 1 | 2; f: () => 1 | 2; }. Related to setter inferred from union has incorrect varianceΒ #56894.
The text was updated successfully, but these errors were encountered:
Oh what a shame. Now if #56894 is deemed a fixable bug, then setters will be acting like (and hopefully displayed as) functions, while getters will be acting like (and continue to be displayed as?) readonly plain properties. Maybe it would be best to do them as a pair, with a flag of course for back compatibility. Just thinking out loud. Pay no notice.
π Search Terms
getter narrowing
function return narrowing
an issue where setter (not getter) is behaving like a plain property: #56894
π Version & Regression Information
same 4.3.5 ~ 5.2.3
prior to 4.3.5 TypeScript rejected the syntax.
β― Playground Link
playground
π» Code
π Actual behavior
π Expected behavior
Additional information about the issue
x
which shows(parameter) x: { readonly r: 1 | 2; readonly v: 1 | 2; f: () => 1 | 2; }
. Related to setter inferred from union has incorrect varianceΒ #56894.The text was updated successfully, but these errors were encountered: