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
See the second method below for the syntax highlighting bug.
class C { a(){return false} b(){return false} Works(){ return this.a() ? true : this.b() ? false : true; } doesNotWork = () => this.a() ? true : this.b() ? false : true; // fails for apparently any keyword, e.g. "undefined", "null", ... alsoWorks = () => this.a() ? true : this.b() ? false : true; }
Does this issue occur when all extensions are disabled?: Yes
The text was updated successfully, but these errors were encountered:
(Experimental duplicate detection) Thanks for submitting this issue. Please also check if it is already covered by an existing one, like:
Sorry, something went wrong.
@vscodebot At a first glance, to me, this issue doesn't appear to be a duplicate of that one.
Match anything following ternary ':' as expression
c90df96
Fixes #721 and #724
Match anything following ternary ':' as expression in class body as f…
31b00a7
…allback Fixes #721 and #724
No branches or pull requests
See the second method below for the syntax highlighting bug.
Does this issue occur when all extensions are disabled?: Yes
The text was updated successfully, but these errors were encountered: