1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

LibJS: Rename ZonedDateTime's MatchBehavior enum members to match spec

This commit is contained in:
Linus Groh 2021-11-10 21:27:25 +00:00
parent f86ee71f65
commit 6ef1a2793f
2 changed files with 5 additions and 5 deletions

View file

@ -47,8 +47,8 @@ enum class OffsetBehavior {
};
enum class MatchBehavior {
MatchExactly,
MatchMinutes,
Exactly,
Minutes,
};
ThrowCompletionOr<BigInt const*> interpret_iso_date_time_offset(GlobalObject&, i32 year, u8 month, u8 day, u8 hour, u8 minute, u8 second, u16 millisecond, u16 microsecond, u16 nanosecond, OffsetBehavior offset_behavior, double offset_nanoseconds, Value time_zone, StringView disambiguation, StringView offset_option, MatchBehavior match_behavior);