mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:17:35 +00:00
LibJS: Implement parsing of TemporalInstantString
This commit is contained in:
parent
79a18b058f
commit
783222f87a
5 changed files with 42 additions and 5 deletions
|
@ -33,6 +33,7 @@ struct ParseResult {
|
|||
};
|
||||
|
||||
enum class Production {
|
||||
TemporalInstantString,
|
||||
TemporalDateString,
|
||||
TemporalDateTimeString,
|
||||
TemporalMonthDayString,
|
||||
|
@ -106,6 +107,7 @@ public:
|
|||
[[nodiscard]] bool parse_time_spec_separator();
|
||||
[[nodiscard]] bool parse_date_time();
|
||||
[[nodiscard]] bool parse_calendar_date_time();
|
||||
[[nodiscard]] bool parse_temporal_instant_string();
|
||||
[[nodiscard]] bool parse_temporal_date_string();
|
||||
[[nodiscard]] bool parse_temporal_date_time_string();
|
||||
[[nodiscard]] bool parse_temporal_month_day_string();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue