Skip to content
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

if const allows ? in identifier #1131

Closed
bbrk24 opened this issue Apr 1, 2024 · 0 comments · Fixed by #1140
Closed

if const allows ? in identifier #1131

bbrk24 opened this issue Apr 1, 2024 · 0 comments · Fixed by #1140
Labels
bug Something isn't working

Comments

@bbrk24
Copy link
Contributor

bbrk24 commented Apr 1, 2024

if x? := y
  ;

Currently compiles to this invalid JS (cleaned up by hand):

let ref?; if ((ref = y)) {
  const x? = ref;
}

Either this should be a compile error, or it could produce something useful like

let ref; if ((ref = y), ref != null) {
  const x = ref;
}
@STRd6 STRd6 added the bug Something isn't working label Apr 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants