-
-
Notifications
You must be signed in to change notification settings - Fork 407
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
[Merged by Bors] - Allow boolean/null as property identifier by dot operator assignment #1985
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1985 +/- ##
==========================================
- Coverage 45.93% 45.90% -0.04%
==========================================
Files 206 206
Lines 17138 17148 +10
==========================================
- Hits 7873 7872 -1
- Misses 9265 9276 +11
Continue to review full report at Codecov.
|
VM implementation
Fixed tests (2):
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me! Thanks!
bors r+ |
…1985) This Pull Request lets true/false/null be used as object property identifiers, when using dot assignment. `foo.null = 'bar';` It changes the following: - AST parsing of member expressions
Pull request successfully merged into main. Build succeeded: |
…1985) This Pull Request lets true/false/null be used as object property identifiers, when using dot assignment. `foo.null = 'bar';` It changes the following: - AST parsing of member expressions
This Pull Request lets true/false/null be used as object property identifiers, when using dot assignment.
foo.null = 'bar';
It changes the following: