LibJS: Revert inadvertent observable Temporal change

This is an editorial change in the Temporal proposal. See:
https://github.com/tc39/proposal-temporal/commit/6274e5d
This commit is contained in:
Timothy Flynn
2025-09-19 09:04:57 -04:00
committed by Tim Flynn
parent 637724f8d9
commit 5bd867f1dc
Notes: github-actions[bot] 2025-09-19 15:25:23 +00:00

View File

@@ -328,10 +328,7 @@ ThrowCompletionOr<Vector<Crypto::SignedBigInteger>> get_possible_epoch_nanosecon
}
// 3. Else,
else {
// a. Perform ? CheckISODaysRange(isoDateTime.[[ISODate]]).
TRY(check_iso_days_range(vm, iso_date_time.iso_date));
// b. Let possibleEpochNanoseconds be GetNamedTimeZoneEpochNanoseconds(parseResult.[[Name]], isoDateTime).
// a. Let possibleEpochNanoseconds be GetNamedTimeZoneEpochNanoseconds(parseResult.[[Name]], isoDateTime).
possible_epoch_nanoseconds = get_named_time_zone_epoch_nanoseconds(*parse_result.name, iso_date_time);
}