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

LibJS: Remove redundant TemporalDateString production

This is an editorial change in the Temporal spec.

See: 41a8a5c
This commit is contained in:
Linus Groh 2022-05-16 20:25:31 +01:00
parent 33f53041e7
commit 51e01b5a80
5 changed files with 8 additions and 38 deletions

View file

@ -52,7 +52,6 @@ struct ParseResult {
enum class Production {
TemporalInstantString,
TemporalDateString,
TemporalDateTimeString,
TemporalDurationString,
TemporalMonthDayString,
@ -174,7 +173,6 @@ public:
[[nodiscard]] bool parse_duration_date();
[[nodiscard]] bool parse_duration();
[[nodiscard]] bool parse_temporal_instant_string();
[[nodiscard]] bool parse_temporal_date_string();
[[nodiscard]] bool parse_temporal_date_time_string();
[[nodiscard]] bool parse_temporal_duration_string();
[[nodiscard]] bool parse_temporal_month_day_string();