-
Notifications
You must be signed in to change notification settings - Fork 154
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
Normative: Fix inconsistent property names/order returned by getISOFields()
#1510
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1510 +/- ##
=======================================
Coverage 95.58% 95.58%
=======================================
Files 19 19
Lines 11139 11139
Branches 1736 1736
=======================================
Hits 10647 10647
Misses 486 486
Partials 6 6
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
The test262 tests turned out to be pretty quick, so I included them already. Marked as draft to avoid merging without TC39 consensus. |
getISOFields()
getISOFields()
getISOFields()
Achieved consensus in today's TC39 meeting. |
Fixes the names of properties on the return value from ZonedDateTime.getISOFields, which were missing the
iso
prefix.Fixes the definition order of properties on the return value from PlainDateTime.getISOFields, which was incorrectly alphabetized.
Adds test262 tests for these fixes to all getISOFields methods.
Closes: #1508