-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
No Support for Private Properties in ES6 Classes? #18724
Comments
I'm sorry, I didn't include the emscripten version with my submission.
|
The pre and post JS files are now run through our (rather dumb) pre-processor and it seems they are confused by a line in your pre-js that starts with "#values". What does your pre-js file look like? Does it have any lines that start like that? I suppose we could just remove that error and ignore # lines that are not known directives? |
I've pasted one of my files that uses private properties below. To my knowledge, private fields have to be declared before they can be used, and # is the symbol JavaScript uses to indicate a private property. If you don't declare private fields and instead just try to define them in the constructor() you get an error from the browser along the lines of
I have worked around this for now by just using The following code runs without error using
|
I see, I guess we can't run our pre-processor over such files then, or at least not with that error enabled. I think the solution is most likely simply to not generate such errors when running on the user code. |
I believe this was fixed in #21227 since pre-processing is now optional. |
I've encountered two issues using certain features of ES6 classes. The first is that classes with private properties aren't working with --pre-js. I've attached a zip file with code that exposes the problem. Here's the output from my attempts to compile and link the attached code:
I'll create a second issue for the other problem I encountered, which is in a different part of the toolchain.
private.zip
The text was updated successfully, but these errors were encountered: