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

Better errors when accidentally calling type-assertion expressions #26991

Closed
DanielRosenwasser opened this issue Sep 10, 2018 · 4 comments
Closed
Labels
Domain: Error Messages The issue relates to error messaging Effort: Moderate Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual". Experience Enhancement Noncontroversial enhancements Fixed A PR has been merged for this issue Help Wanted You can do this Suggestion An idea for TypeScript

Comments

@DanielRosenwasser
Copy link
Member

DanielRosenwasser commented Sep 10, 2018

declare function foo(): string;

foo()
(document.getElementById("lelement") as HTMLDivElement).id;

@mousetraps just ran into this totally garbage error message

[ts] Cannot invoke an expression whose type lacks a call signature. Type 'String' has no compatible call signatures.

Given

  1. A call expression with one argument
  2. whose open paren starts on the next line
  3. and whose sole argument is an AsExpression/TypeAssertionExpression

we should give a specialized error that ends in:

It is highly likely that you are missing a semicolon.
@DanielRosenwasser DanielRosenwasser added Domain: Error Messages The issue relates to error messaging Experience Enhancement Noncontroversial enhancements Help Wanted You can do this Effort: Moderate Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual". labels Sep 10, 2018
@Kingwl
Copy link
Contributor

Kingwl commented Sep 10, 2018

should that work with all ASI context?

@DanielRosenwasser
Copy link
Member Author

DanielRosenwasser commented Sep 10, 2018

First off, it's not even an ASI problem. I just want to clarify that. You wish you had ASI in these scenarios, but you don't. 😃

It's sort of tough to nail down because not all of these are type errors off the bat. The other one that comes to mind is accessing a member off of an array which actually got parsed as an element access with a comma expression:

foo()
[1, 2, 3].forEach(x => {
  return x * x;
})

On the bright side, we already catch some of these: https://twitter.com/drosenwasser/status/939589182833410048

@DanielRosenwasser
Copy link
Member Author

I also want to say that this improvement is definitely higher-priority. If a user weren't using TypeScript, then it's significantly less likely that they'd have run into this problem.

@DanielRosenwasser
Copy link
Member Author

Thanks a bunch @Kingwl! 💯

@DanielRosenwasser DanielRosenwasser added the Fixed A PR has been merged for this issue label Sep 11, 2018
@DanielRosenwasser DanielRosenwasser added this to the TypeScript 3.1 milestone Sep 27, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Domain: Error Messages The issue relates to error messaging Effort: Moderate Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual". Experience Enhancement Noncontroversial enhancements Fixed A PR has been merged for this issue Help Wanted You can do this Suggestion An idea for TypeScript
Projects
None yet
Development

No branches or pull requests

3 participants