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
class XX { static aaa() { } static bbb() { } static ccc = '123' } XX['ccc']; // error XX['aaa'](); // error enum key { aaa = 'aaa', bbb = 'bbb', ccc = 'ccc' } const nnn = key.aaa; const mmm = key.ccc; let a = XX[nnn](); // error let b = XX[mmm]; // error
The text was updated successfully, but these errors were encountered:
fabf6fe
chore(release): 0.19.3 [skip ci]
36e98ad
## [0.19.3](v0.19.2...v0.19.3) (2019-11-28) ### Bug Fixes * [#99](#99) ([fabf6fe](fabf6fe))
🎉 This issue has been resolved in version 0.19.3 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
meixg
No branches or pull requests
The text was updated successfully, but these errors were encountered: