We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example we have following code
([{a:1},{a:2},{a:3}] as {a: number}[]).forEach(({})=>null);
If you place pointer between '{' and '}' and then hit alt+space - autocomplete breaks the function. What I expect
([{a:1},{a:2},{a:3}] as {a: number}[]).forEach(({a})=>null);
What I get
([{a:1},{a:2},{a:3}] as {a: number}[]).forEacha})=>null);
PS Atom 1.41.0 Atom-Typescript 13.4.0
The text was updated successfully, but these errors were encountered:
7bb4ef6
Thanks for reporting! Should be fixed in v13.4.1.
Sorry, something went wrong.
Thank you for quick fix! @lierdakil But unfortunately there some bug in fix. Console says: Uncaught (in promise) Error: Cannot find module './misc'
Uncaught (in promise) Error: Cannot find module './misc'
Huh. Ouch. Yup, sorry, that was my bad. Hopefully fixed in v13.4.3
Augh. Sorry, found another issue with the new implementation, when prefix with mismatched case wouldn't be replaced. v13.4.4 should be good.
No branches or pull requests
For example we have following code
If you place pointer between '{' and '}' and then hit alt+space - autocomplete breaks the function.
What I expect
What I get
PS
Atom 1.41.0
Atom-Typescript 13.4.0
The text was updated successfully, but these errors were encountered: