1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 07:07:44 +00:00

LibJS: Implement Temporal's Time Zone Methods Record

Similar to 'Calendar Methods Record', this is part of a refactor to the
temporal spec which will need much work for all of the corresponding AOs
to be updated to use.

Put in a new header file to prevent circular include problems when using
this new record.
This commit is contained in:
Shannon Booth 2024-02-18 15:13:36 +13:00 committed by Tim Flynn
parent 15977ea42f
commit fa692ae3f6
4 changed files with 180 additions and 0 deletions

View file

@ -237,6 +237,7 @@ set(SOURCES
Runtime/Temporal/Temporal.cpp
Runtime/Temporal/TimeZone.cpp
Runtime/Temporal/TimeZoneConstructor.cpp
Runtime/Temporal/TimeZoneMethods.cpp
Runtime/Temporal/TimeZonePrototype.cpp
Runtime/Temporal/ZonedDateTime.cpp
Runtime/Temporal/ZonedDateTimeConstructor.cpp