-
-
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] - Fix exponent operator #2681
Conversation
When abs(base) == 1 and y == +/- Infinity result should be NaN
Test262 conformance changes
Fixed tests (4):
|
Codecov Report
@@ Coverage Diff @@
## main #2681 +/- ##
==========================================
+ Coverage 49.19% 49.42% +0.23%
==========================================
Files 397 394 -3
Lines 39739 39527 -212
==========================================
- Hits 19548 19535 -13
+ Misses 20191 19992 -199
... and 14 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.
Good catch!
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.
LGTM 😄
bors r+ |
When `abs(base) == 1` and `y == +/- Infinity` result should be `NaN` Fixes the remaining failing tests in the `exponentiation` test suite
Pull request successfully merged into main. Build succeeded: |
When
abs(base) == 1
andy == +/- Infinity
result should beNaN
Fixes the remaining failing tests in the
exponentiation
test suite