-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
@babel/plugin-proposal-class properties: .name
incorrect for private fields
#10175
Comments
Hey @mheiber! We really appreciate you taking the time to report an issue. The collaborators If you need any help, or just have general Babel or JavaScript questions, we have a vibrant Slack |
It seems that V8 will print class A {
#foo = function () {};
constructor () {
console.log(this.#foo.name, this.#foo.name.length);
}
}
new A(); prints
|
Hi @JLHwung whoops! I think I made a mistake earlier. Sorry about that. It looks to me now that the function.name should be lexical semantics:
runtime semantics in the definition of in the lexical grammar:
|
Does this seem to be a real issue, then? I could make a PR in a few weeks after I get approval from my company to contribute. |
@mheiber It is a bug and PR is definitely appreciated. Note that Babel has similar issues on keeping track of However, as |
I would prefer not to use |
I agree, at least it will be better than our current situation, though I am afraid it might confuse developers if we return the name without hash while native implementations return the name with hash, which is spec compliant. Maybe we can leave a note comment on that. |
Bug Report
Current Behavior
When a function is assigned to a private field, its
name
property should (I think) be name of the private field. Instead, the name is alwaysvalue
.Input Code
Expected behavior/code
The code above should log 'foo'.The code above should log '#foo'
Babel Configuration (.babelrc, package.json, cli command)
repl link
Possible Solution
The function generated WeakMap entry could use the name of the private field ('foo' in this case instead of 'value'). per the spec proposal
Additional context/Screenshots
The text was updated successfully, but these errors were encountered: