-
Notifications
You must be signed in to change notification settings - Fork 129
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
Syntax highlighting broken following ES6 spread operator #393
Comments
While it works with the above example now, it still breaks for me in the simpler case: const a = Math.max(...x);
const b = 2;
|
Closing this as it is little bit different from the original issue and its easier to track that way. Filed #397 |
Confused about the status here. This is still broken in today's VS Code insider build, there don't seem to be any open issues addressing it. |
@jamietre To test the fix, please try installing the Latest TypeScript and Javascript Grammar extension |
Beautiful, thanks! I'm a bit confused about the relationship between the VS Code insider build and dependencies such as this, e.g. why would the bug have manifested without my intervention in an insider build, but the fix did not? |
VSCode insiders contains the latest build for VSCode itself . For dependencies like this, the insiders build picks up the version listed in the The Latest TS Grammar extension offers an even more up to date version of the TS and JS grammar for testing. It can be installed in older, non-insiders VSCode releases as well and is updated like a normal extension. Hope that clear things up |
From @jamietre on December 29, 2016 14:58
Steps to Reproduce:
extends
and addsuper(...args)
super(...args)
Just noticed it this morning on insider build.
Update - affects any use of spread operator
Copied from original issue: microsoft/vscode#17905
The text was updated successfully, but these errors were encountered: