You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let before be the latest possible ISO Date-Time Record for which CompareISODateTime(before, isoDateTime) = -1 and ! GetPossibleEpochNanoseconds(timeZone, before) is not empty.
Let after be the earliest possible ISO Date-Time Record for which CompareISODateTime(after, isoDateTime) = 1 and ! GetPossibleEpochNanoseconds(timeZone, after) is not empty.
Let offsetBefore be GetOffsetNanosecondsFor(timeZone, before).
Let offsetAfter be GetOffsetNanosecondsFor(timeZone, after).
But GetOffsetNanosecondsFor expects a BigInt input.
The text was updated successfully, but these errors were encountered:
Regression from #2925. Wrong type passed to GetOffsetNanosecondsFor; we
need the result of GetPossibleEpochNanoseconds from the preceding lines.
Closes: #3010
DisambiguatePossibleEpochNanoseconds, steps 6-9:
But
GetOffsetNanosecondsFor
expects aBigInt
input.The text was updated successfully, but these errors were encountered: