diff options
author | Linus Groh <mail@linusgroh.de> | 2021-10-30 22:29:58 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-30 23:15:18 +0200 |
commit | 2cbcb99ec75e65545167e551af7b9390020204ec (patch) | |
tree | 3de443d074134c458354ebe505982aed2992f8af | |
parent | a7cb042ca8b34c48bd2bf99de70aa831bf8473ed (diff) | |
download | serenity-2cbcb99ec75e65545167e551af7b9390020204ec.zip |
LibJS: Update spec comment in parse_temporal_time_zone_string()
This is a normative change in the Temporal spec.
See: https://github.com/tc39/proposal-temporal/commit/19b693c
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp b/Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp index d9ca09129c..bb76c7d0f4 100644 --- a/Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp +++ b/Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp @@ -952,7 +952,7 @@ ThrowCompletionOr<TemporalTimeZone> parse_temporal_time_zone_string(GlobalObject // 2. If isoString does not satisfy the syntax of a TemporalTimeZoneString (see 13.33), then // a. Throw a RangeError exception. - // 3. Let z, sign, hours, minutes, seconds, fraction and name be the parts of isoString produced respectively by the UTCDesignator, TimeZoneUTCOffsetSign, TimeZoneUTCOffsetHour, TimeZoneUTCOffsetMinute, TimeZoneUTCOffsetSecond, TimeZoneUTCOffsetFraction, and TimeZoneIANAName productions, or undefined if not present. + // 3. Let z, sign, hours, minutes, seconds, fraction and name be the parts of isoString produced respectively by the UTCDesignator, TimeZoneUTCOffsetSign, TimeZoneUTCOffsetHour, TimeZoneUTCOffsetMinute, TimeZoneUTCOffsetSecond, TimeZoneUTCOffsetFractionalPart, and TimeZoneIANAName productions, or undefined if not present. Optional<StringView> z_part; Optional<StringView> sign_part; Optional<StringView> hours_part; |