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

LibJS: Simplify TimeSpecWithOptionalTimeZoneNotAmbiguous

This is a normative change in the Temporal spec.

See: 77b0163
This commit is contained in:
Linus Groh 2022-08-25 21:38:29 +01:00
parent f29c7cab16
commit 42452a81a2
2 changed files with 65 additions and 68 deletions

View file

@ -104,9 +104,11 @@ public:
[[nodiscard]] bool parse_utc_designator();
[[nodiscard]] bool parse_date_year();
[[nodiscard]] bool parse_date_month();
[[nodiscard]] bool parse_date_month_with_thirty_days();
[[nodiscard]] bool parse_date_day();
[[nodiscard]] bool parse_date_spec_year_month();
[[nodiscard]] bool parse_date_spec_month_day();
[[nodiscard]] bool parse_valid_month_day();
[[nodiscard]] bool parse_date();
[[nodiscard]] bool parse_time_hour();
[[nodiscard]] bool parse_time_minute();