-
Notifications
You must be signed in to change notification settings - Fork 463
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
Syntax: E notation check is missing #6986
Comments
Same for let v = 1e_ (or similar with any number of underscores) |
BTW, also a bit weird (but all valid JS):
|
I think the correct resolution is
|
Agreed! Also, at the moment, you can basically do whatever you want underscore-wise, e.g. let x = 1_________0_______.____2_____3 compiles to let x = 10.23; (FWIW this seems to be the case in OCaml, too.) |
Lol, that's how we supported (superset of?) JS numeric separators |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
emits
which is invalid in JS.
The text was updated successfully, but these errors were encountered: