-
Notifications
You must be signed in to change notification settings - Fork 159
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
Rename Temporal.now => Temporal.Now #1645
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1645 +/- ##
=======================================
Coverage 95.00% 95.00%
=======================================
Files 19 19
Lines 10726 10726
Branches 1716 1716
=======================================
Hits 10190 10190
Misses 523 523
Partials 13 13
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
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.
i only reviewed the one spec file; while i despise the capitalized form, this PR seems correct to me.
3c60880
to
365c462
Compare
ed9855a
to
975be92
Compare
https://bugs.webkit.org/show_bug.cgi?id=228658 Patch by Philip Chimento <[email protected]> on 2021-07-30 Reviewed by Yusuke Suzuki. See tc39/proposal-temporal#1645. In the July 2021 meeting TC39 achieved consensus to rename Temporal.now to Temporal.Now since it is a namespace. * runtime/TemporalNow.cpp: Change Now[@@toStringTag] accordingly. * runtime/TemporalObject.cpp: Rename now property to Now. Canonical link: https://commits.webkit.org/240138@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280506 268f45cc-cd09-0410-ab3c-d52691b4dbfc
https://bugs.webkit.org/show_bug.cgi?id=228658 Patch by Philip Chimento <[email protected]> on 2021-07-30 Reviewed by Yusuke Suzuki. See tc39/proposal-temporal#1645. In the July 2021 meeting TC39 achieved consensus to rename Temporal.now to Temporal.Now since it is a namespace. * runtime/TemporalNow.cpp: Change Now[@@toStringTag] accordingly. * runtime/TemporalObject.cpp: Rename now property to Now. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@280506 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Fixes #1583 per today's consensus decision in TC39 plenary meeting.
Note that this PR does not include a
toStringTag
implementation. See #1539.