-
-
Notifications
You must be signed in to change notification settings - Fork 413
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 async arrow functions #2393
Conversation
Test262 conformance changes
Fixed tests (187):
Broken tests (2):
|
Codecov Report
@@ Coverage Diff @@
## main #2393 +/- ##
==========================================
- Coverage 39.07% 38.80% -0.27%
==========================================
Files 311 313 +2
Lines 23669 23897 +228
==========================================
+ Hits 9248 9274 +26
- Misses 14421 14623 +202
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
eafdd7e
to
81a8729
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.
LGTM
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! :)
81a8729
to
c88ae45
Compare
bors r+ |
This Pull Request fixes #1805. It changes the following: - Implement async arrow function parsing and execution. - Handle special case when a function expressions binding identifier need to be bound in the function body. - Implement special silent ignored assignment for the above case. - Fix issue with getting the correct promise capability for function returns. - Complete function object `toString` todo. I will fix the two failing assignmenttargettype tests in a follow up PR.
Pull request successfully merged into main. Build succeeded: |
This Pull Request fixes #1805.
It changes the following:
toString
todo.I will fix the two failing assignmenttargettype tests in a follow up PR.