mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:57:35 +00:00
LibJS: Implement parsing of TemporalCalendarString
This commit is contained in:
parent
1583c7257c
commit
79a18b058f
6 changed files with 33 additions and 9 deletions
|
@ -40,6 +40,7 @@ enum class Production {
|
|||
TemporalTimeZoneString,
|
||||
TemporalYearMonthString,
|
||||
TemporalZonedDateTimeString,
|
||||
TemporalCalendarString,
|
||||
TemporalRelativeToString,
|
||||
};
|
||||
|
||||
|
@ -113,6 +114,7 @@ public:
|
|||
[[nodiscard]] bool parse_temporal_time_zone_string();
|
||||
[[nodiscard]] bool parse_temporal_year_month_string();
|
||||
[[nodiscard]] bool parse_temporal_zoned_date_time_string();
|
||||
[[nodiscard]] bool parse_temporal_calendar_string();
|
||||
[[nodiscard]] bool parse_temporal_relative_to_string();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue