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

Hover hint is invalid if there are multiple type aliases with same parameters #38829

Closed
zaki-yama opened this issue May 28, 2020 · 4 comments
Closed
Labels
Design Limitation Constraints of the existing architecture prevent this from being fixed

Comments

@zaki-yama
Copy link

zaki-yama commented May 28, 2020

TS Template added by @mjbvz

TypeScript Version: 3.9.3

Search Terms

  • quick info
  • alias / aliases

  • VSCode Version: 1.45.1
  • OS Version: Darwin x64 18.7.0

Steps to Reproduce:

  1. Write the following TypeScript code
type Foo = string | number;
type Bar = string | number;

function someFunc(params: {
  foo: Foo,
  bar: Bar,
}) {
  //
}

// then try to call the function `someFunc`
someFunc(

Here I defined two type aliases, Foo and Bar.
Both have the same parameters, string | number.

  1. Hover over the someFunc and show popup
  2. The expected type of parameter bar is Bar, but actually it was Foo

SS_2020-05-28_at_21_44_48

It's also happened in Signature help.

SS_2020-05-28_at_21_44_59

Does this issue occur when all extensions are disabled?: Yes

@IllusionMH
Copy link
Contributor

Looks like duplicate of #36761

/assign mjbvz

@mjbvz mjbvz transferred this issue from microsoft/vscode May 28, 2020
@mjbvz mjbvz removed their assignment May 28, 2020
@mjbvz
Copy link
Contributor

mjbvz commented May 28, 2020

Also related to #34778

The issue is that Foo and Bar are structurally equivalent from the type system's point of view

@DanielRosenwasser
Copy link
Member

Yes, when we try to display the type

{
  foo: Foo,
  bar: Bar,
}

we are actually working with the type represented by

{
  foo: string | number,
  bar: string | number,
}

When we see string | number, we say "oh, yeah, I saw an alias for that once" and use the first we encountered: Foo.

@zaki-yama
Copy link
Author

For your information, when I tried to open the same file in IntelliJ IDEA, hover hint showed the type alias correctly.

SS 2020-05-28 at 21 40 25

@RyanCavanaugh RyanCavanaugh added the Design Limitation Constraints of the existing architecture prevent this from being fixed label Jun 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Design Limitation Constraints of the existing architecture prevent this from being fixed
Projects
None yet
Development

No branches or pull requests

5 participants