mirror of https://github.com/tc39/test262.git
Temporal Helpers: Avoid observable calendar ID lookup in OneShiftTimeZone
This toString() call would observably get the `id` property of the plainDateTime's calendar object. Not good for the tests that I am writing that verify observable calls!
This commit is contained in:
parent
d4f49b84ab
commit
5c7f4009dc
|
@ -1734,7 +1734,7 @@ var TemporalHelpers = {
|
|||
}
|
||||
|
||||
getPossibleInstantsFor(plainDateTime) {
|
||||
this.getPossibleInstantsForCalledWith.push(plainDateTime.toString());
|
||||
this.getPossibleInstantsForCalledWith.push(plainDateTime.toString({ calendarName: "never" }));
|
||||
const [instant] = super.getPossibleInstantsFor(plainDateTime);
|
||||
if (this._shiftNanoseconds > 0) {
|
||||
if (this._isBeforeShift(instant)) return [instant];
|
||||
|
|
Loading…
Reference in New Issue