-
-
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
Parser allows spaces between # and identifier #8225
Comments
Hey @ramin25! 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 |
This may well make sense logically, but does the spec actually say that? Since It seems like this would require new logic in the syntactic grammar itself to assert a lack of whitespace/comments. |
See babel/proposals#12 (comment): white spaces should be disallowed. I don't know how the proposal spec handles this, but if it doesn't it's a bug with the proposal. |
Alright, then is there a spec bug tracking that? I don't see anything in the spec text actually backing this up. |
It's subtle, but because the PrivateName production uses two :: rather than one :, it is part of the token grammar, and no whitespace is permitted. We have discussed whether whitespace should be permitted here in TC39 and the decision to treat it as one token with no whitespace was an explicit one. |
@littledan Perfect, that's all I was missing. Like I said, seems like the right thing to do, I just wanted to make sure it was actually specified fully. |
Bug Report
Current Behavior
First identified in: Class Fields (Stage 3) #12
The parser currently allows spacing between the private name symbol
#
and the identifier.However, it seems to violate the lexical grammar in the spec proposal:
Input Code
Expected behavior/code
Babel should communicate the parser error, e.g: "Spaces not permitted in private field name"
Babel Configuration (.babelrc, package.json, cli command)
Environment
CC'ing @rricard @mheiber and @littledan who were part of the conversation regarding this in Class Fields (Stage 3) #12.
I would also like to volunteer to fix this.
The text was updated successfully, but these errors were encountered: