mirror of
https://github.com/tc39/test262.git
synced 2025-09-23 18:18:37 +02:00
Note the monkeypatch of getPossibleInstantsFor in test/built-ins/Temporal/ TimeZone/prototype/getInstantFor/argument-builtin-calendar-no-array- iteration.js. Other than that, all the tests are basically identical.
24 lines
947 B
JavaScript
24 lines
947 B
JavaScript
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-temporal.duration.compare
|
|
description: >
|
|
Calling the method with a relativeTo property bag with a builtin calendar
|
|
causes no observable array iteration when getting the calendar fields.
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const arrayPrototypeSymbolIteratorOriginal = Array.prototype[Symbol.iterator];
|
|
Array.prototype[Symbol.iterator] = function arrayIterator() {
|
|
throw new Test262Error("Array should not be iterated");
|
|
}
|
|
|
|
const timeZone = "UTC";
|
|
const relativeTo = { year: 2000, month: 5, day: 2, hour: 21, minute: 43, second: 5, timeZone, calendar: "iso8601" };
|
|
const duration1 = new Temporal.Duration(0, 0, 1);
|
|
const duration2 = new Temporal.Duration(0, 0, 0, 7);
|
|
Temporal.Duration.compare(duration1, duration2, { relativeTo });
|
|
|
|
Array.prototype[Symbol.iterator] = arrayPrototypeSymbolIteratorOriginal;
|