1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

LibJS: Simplify ParseTemporalTimeZoneString

This is an editorial change in the Temporal spec.
See: eec8efab
This commit is contained in:
Idan Horowitz 2022-10-20 00:19:09 +03:00 committed by Linus Groh
parent 0c61552b81
commit d38aeddd77
3 changed files with 21 additions and 52 deletions

View file

@ -50,9 +50,9 @@ enum class Production {
TemporalDurationString,
TemporalMonthDayString,
TemporalTimeString,
TemporalTimeZoneString,
TemporalYearMonthString,
TemporalZonedDateTimeString,
TimeZoneIdentifier,
TimeZoneNumericUTCOffset,
CalendarName,
DateMonth,
@ -165,7 +165,6 @@ public:
[[nodiscard]] bool parse_temporal_duration_string();
[[nodiscard]] bool parse_temporal_month_day_string();
[[nodiscard]] bool parse_temporal_time_string();
[[nodiscard]] bool parse_temporal_time_zone_string();
[[nodiscard]] bool parse_temporal_year_month_string();
[[nodiscard]] bool parse_temporal_zoned_date_time_string();