1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:17:35 +00:00

LibJS: Implement Temporal.PlainDateTime.prototype.getISOFields()

This commit is contained in:
Linus Groh 2021-07-23 01:04:10 +01:00
parent 18fd0d4011
commit 080112eb82
4 changed files with 106 additions and 0 deletions

View file

@ -173,6 +173,7 @@ namespace JS {
P(getInt8) \
P(getInt16) \
P(getInt32) \
P(getISOFields) \
P(getMilliseconds) \
P(getMinutes) \
P(getMonth) \
@ -227,6 +228,15 @@ namespace JS {
P(isSafeInteger) \
P(isSealed) \
P(isView) \
P(isoDay) \
P(isoHour) \
P(isoMicrosecond) \
P(isoMillisecond) \
P(isoMinute) \
P(isoMonth) \
P(isoNanosecond) \
P(isoSecond) \
P(isoYear) \
P(italics) \
P(join) \
P(keyFor) \