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

LibJS: Support IANA legacy names in the Temporal ISO 8601 grammar

This is a normative change in the Temporal spec.

See: 2419680
This commit is contained in:
Linus Groh 2022-07-30 11:00:08 +02:00
parent 41791146fd
commit 6850f25840
3 changed files with 30 additions and 0 deletions

View file

@ -136,6 +136,7 @@ public:
[[nodiscard]] bool parse_tz_char();
[[nodiscard]] bool parse_time_zone_iana_component();
[[nodiscard]] bool parse_time_zone_iana_name_tail();
[[nodiscard]] bool parse_time_zone_iana_legacy_name();
[[nodiscard]] bool parse_time_zone_iana_name();
[[nodiscard]] bool parse_time_zone_identifier();
[[nodiscard]] bool parse_time_zone_bracketed_annotation();