Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flow is improperly narrowing getter values #56899

Closed
craigphicks opened this issue Dec 29, 2023 · 4 comments
Closed

Flow is improperly narrowing getter values #56899

craigphicks opened this issue Dec 29, 2023 · 4 comments
Labels
Working as Intended The behavior described is the intended behavior; this is not a bug

Comments

@craigphicks
Copy link

craigphicks commented Dec 29, 2023

πŸ”Ž 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

function f10(x: { get r():1|2; readonly v: 1| 2; f:()=>1|2 }): void{
//            ^  (parameter) x: { readonly r: 1 | 2; readonly v: 1 | 2; f: () => 1 | 2; }
  if (x.v===1){
    x.v;
//    ^ (property) v: 1
  }
  if (x.r===1){
    const c = x.r;
//              ^ (property) r: 1
//        ^ const c: 1
  }
  if (x.f()===1){
    const c = x.f();
//              ^ (property) f: () => 1 | 2
//        ^ const c: 1 | 2
  }
}

πŸ™ Actual behavior

  if (x.r===1){
    const c = x.r;
//              ^ (property) r: 1
//        ^ const c: 1
  }

πŸ™‚ Expected behavior

  if (x.r===1){
    const c = x.r;
//              ^ (property) get r: () => 1 | 2
//        ^ const c: 1 | 2
  }

Additional information about the issue

  • 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.
@fatcerberus
Copy link

Duplicate of #56149. That TypeScript is β€œlossy” and encodes the getter as a regular property in the type is more or less by design.

@fatcerberus
Copy link

Maybe some day we could have a volatile keyword, like C…

@craigphicks
Copy link
Author

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.

@RyanCavanaugh RyanCavanaugh added the Working as Intended The behavior described is the intended behavior; this is not a bug label Jan 2, 2024
@typescript-bot
Copy link
Collaborator

This issue has been marked as "Working as Intended" and has seen no recent activity. It has been automatically closed for house-keeping purposes.

@typescript-bot typescript-bot closed this as not planned Won't fix, can't repro, duplicate, stale Jan 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Working as Intended The behavior described is the intended behavior; this is not a bug
Projects
None yet
Development

No branches or pull requests

4 participants