1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

LibJS: Implement parsing of TemporalDateTimeString

This commit is contained in:
Linus Groh 2021-11-19 18:21:33 +00:00
parent 02e7de2cba
commit b42b7d5f16
5 changed files with 23 additions and 7 deletions

View file

@ -467,10 +467,19 @@ bool ISO8601Parser::parse_temporal_date_string()
return parse_calendar_date_time();
}
// https://tc39.es/proposal-temporal/#prod-TemporalDateTimeString
bool ISO8601Parser::parse_temporal_date_time_string()
{
// TemporalDateTimeString :
// CalendarDateTime
return parse_calendar_date_time();
}
#define JS_ENUMERATE_ISO8601_PRODUCTION_PARSERS \
__JS_ENUMERATE(TemporalDateString, parse_temporal_date_string)
}
#define JS_ENUMERATE_ISO8601_PRODUCTION_PARSERS \
__JS_ENUMERATE(TemporalDateString, parse_temporal_date_string) \
__JS_ENUMERATE(TemporalDateTimeString, parse_temporal_date_time_string)
Optional<ParseResult> parse_iso8601(Production production, StringView input)
{