mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 10:36:02 +00:00
LibJS: Fix TemporalCalendarString ambiguity
This is a normative change in the Temporal spec. See: -278d238
-b73aea7
This commit is contained in:
parent
484c66125d
commit
b6f101f1c0
Notes:
sideshowbarker
2024-07-17 05:42:39 +09:00
Author: https://github.com/linusg
Commit: b6f101f1c0
Pull-request: https://github.com/SerenityOS/serenity/pull/15080
Reviewed-by: https://github.com/trflynn89 ✅
6 changed files with 63 additions and 50 deletions
|
@ -161,6 +161,7 @@ Crypto::SignedBigInteger apply_unsigned_rounding_mode(Crypto::SignedDivisionResu
|
|||
double round_number_to_increment(double, u64 increment, StringView rounding_mode);
|
||||
Crypto::SignedBigInteger round_number_to_increment(Crypto::SignedBigInteger const&, u64 increment, StringView rounding_mode);
|
||||
Crypto::SignedBigInteger round_number_to_increment_as_if_positive(Crypto::SignedBigInteger const&, u64 increment, StringView rounding_mode);
|
||||
ThrowCompletionOr<ISODateTime> parse_iso_date_time(VM&, StringView iso_string);
|
||||
ThrowCompletionOr<ISODateTime> parse_iso_date_time(VM&, ParseResult const& parse_result);
|
||||
ThrowCompletionOr<TemporalInstant> parse_temporal_instant_string(VM&, String const& iso_string);
|
||||
ThrowCompletionOr<ISODateTime> parse_temporal_zoned_date_time_string(VM&, String const& iso_string);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue