-
-
Notifications
You must be signed in to change notification settings - Fork 411
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] - Handle surrogates in String.fromCodePoint
#2659
Conversation
Test262 conformance changes
|
Codecov Report
@@ Coverage Diff @@
## main #2659 +/- ##
==========================================
+ Coverage 49.20% 49.76% +0.55%
==========================================
Files 390 383 -7
Lines 39562 39179 -383
==========================================
+ Hits 19467 19496 +29
+ Misses 20095 19683 -412
... and 17 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.
Nice! Looks good to me! :)
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+ |
This Pull Request fixes #2657. It changes the following: - Handles surrogates when trying to convert f64 codepoints to u16. - Replaces `abs().floor()` with `truncate` on `is_float_integer`.
This PR was included in a batch that was canceled, it will be automatically retried |
This Pull Request fixes #2657. It changes the following: - Handles surrogates when trying to convert f64 codepoints to u16. - Replaces `abs().floor()` with `truncate` on `is_float_integer`.
Pull request successfully merged into main. Build succeeded: |
String.fromCodePoint
String.fromCodePoint
This Pull Request fixes #2657.
It changes the following:
abs().floor()
withtruncate
onis_float_integer
.