diff options
author | Linus Groh <mail@linusgroh.de> | 2021-11-27 23:54:38 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-11-27 23:54:38 +0000 |
commit | 908d943e85238bbda571942cc2bca56e6136a993 (patch) | |
tree | 8f34c5f472ececf8da17ca425d5b44684dc745e6 | |
parent | a94223afd04ceb0234c47b1e0b08bbd89056c761 (diff) | |
download | serenity-908d943e85238bbda571942cc2bca56e6136a993.zip |
LibJS: Parse TemporalInstantString as part of TemporalCalendarString
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp b/Userland/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp index 0b9fcd4a87..bbaad1ab39 100644 --- a/Userland/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp +++ b/Userland/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp @@ -875,7 +875,7 @@ bool ISO8601Parser::parse_temporal_calendar_string() // DateSpecYearMonth // DateSpecMonthDay return parse_calendar_name() - // TODO: || parse_temporal_instant_string() + || parse_temporal_instant_string() || parse_calendar_date_time() || parse_date_spec_year_month() || parse_date_spec_month_day() |