-
-
Notifications
You must be signed in to change notification settings - Fork 406
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] - Implement var initializers in for-in loops #2842
Conversation
Test262 conformance changes
Fixed tests (1):
|
Codecov Report
@@ Coverage Diff @@
## main #2842 +/- ##
=======================================
Coverage 50.92% 50.92%
=======================================
Files 419 419
Lines 41780 41805 +25
=======================================
+ Hits 21278 21291 +13
- Misses 20502 20514 +12
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
1cbaf98
to
0f9b268
Compare
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! :)
bors r+ |
This Pull Request implements [Initializers in ForIn Statement Heads](https://tc39.es/ecma262/#sec-initializers-in-forin-statement-heads) from the Annex B. This also cleans up the "annex-b" feature to be able to disable it with `--no-default-features`, since I couldn't test the error messages when the feature is disabled.
Pull request successfully merged into main. Build succeeded: |
This Pull Request implements Initializers in ForIn Statement Heads from the Annex B. This also cleans up the "annex-b" feature to be able to disable it with
--no-default-features
, since I couldn't test the error messages when the feature is disabled.