-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Import fixes from https://github.com/Contrast-Security-Inc/esprima #6
Comments
about this commit: backport old javascript patches into typescript is this valid? I did not find classproperty in estree specification |
chrome already support private members class IncreasingCounter {
#count = 0;
get value() {
console.log('Getting the current value!');
return this.#count;
}
increment() {
this.#count++;
}
} |
Yes, but the name of the interface/class in estree spec is PropertyDefinition |
everything from this fork is in esprima-next, but maybe in other form |
https://github.com/Contrast-Security-Inc/esprima has many fixes not in our fork, look for them.
jquery/esprima@main...Contrast-Security-Inc:master
The text was updated successfully, but these errors were encountered: