[Webkit-unassigned] [Bug 230331] Various tweaks in preparation for Temporal.Instant
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Sep 22 18:10:19 PDT 2021
https://bugs.webkit.org/show_bug.cgi?id=230331
--- Comment #12 from Ross Kirsling <ross.kirsling at sony.com> ---
Comment on attachment 438998
--> https://bugs.webkit.org/attachment.cgi?id=438998
Patch
View in context: https://bugs.webkit.org/attachment.cgi?id=438998&action=review
> Source/JavaScriptCore/runtime/TemporalObject.cpp:242
> + if (std::isnan(doubleValue) || doubleValue < 0 || doubleValue > 9) {
Ahh, we could do it this way, but this is actually me being silly -- I should have written `if(!(doubleValue >= 0 && doubleValue <= 9))`, as Yusuke did in TemporalPlainTime.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210923/bc7c1267/attachment.htm>
More information about the webkit-unassigned
mailing list