mirror of
https://github.com/tc39/test262.git
synced 2025-09-25 11:08:49 +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.
22 lines
899 B
JavaScript
22 lines
899 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.plaindatetime.compare
|
|
description: >
|
|
Calling the method with a property bag argument 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 arg = { year: 2000, month: 5, day: 2, hour: 21, minute: 43, second: 5, calendar: "iso8601" };
|
|
Temporal.PlainDateTime.compare(arg, new Temporal.PlainDateTime(1976, 11, 18));
|
|
Temporal.PlainDateTime.compare(new Temporal.PlainDateTime(1976, 11, 18), arg);
|
|
|
|
Array.prototype[Symbol.iterator] = arrayPrototypeSymbolIteratorOriginal;
|