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
ES6 has a shorthand syntax for defining methods on objects similar to that of a class.
The method declaration in
let x = { hello() { let hello = "world"; } };
should have the same highlighting as
class X { hello() { let hello = "world"; } }
In the current TypeScript Sublime Text plugin, the method name in the first code sample is not highlighted:
(as a side note, GitHub has the same highlighting issue at present; do they use this repository?)
The text was updated successfully, but these errors were encountered:
Fixed by #257
Sorry, something went wrong.
No branches or pull requests
ES6 has a shorthand syntax for defining methods on objects similar to that of a class.
The method declaration in
should have the same highlighting as
In the current TypeScript Sublime Text plugin, the method name in the first code sample is not highlighted:
(as a side note, GitHub has the same highlighting issue at present; do they use this repository?)
The text was updated successfully, but these errors were encountered: