mirror of https://github.com/tc39/test262.git
21 lines
736 B
JavaScript
21 lines
736 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.plainmonthday.from
|
|
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 = { monthCode: "M11", day: 23, calendar: "iso8601" };
|
|
Temporal.PlainMonthDay.from(arg);
|
|
|
|
Array.prototype[Symbol.iterator] = arrayPrototypeSymbolIteratorOriginal;
|