blob: f07e1f3a087b539263c9cc44f68761697e221820 [file] [log] [blame]
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-temporal.plainmonthday.prototype.day
description: Getter throws if the calendar returns ±∞ from its day method
features: [Temporal]
---*/
class InfinityCalendar extends Temporal.Calendar {
constructor(positive) {
super("iso8601");
this.positive = positive;
}
day() {
return this.positive ? Infinity : -Infinity;
}
}
const pos = new InfinityCalendar(true);
const instance1 = new Temporal.PlainMonthDay(5, 2, pos);
assert.throws(RangeError, () => instance1.day);
const neg = new InfinityCalendar(false);
const instance2 = new Temporal.PlainMonthDay(5, 2, neg);
assert.throws(RangeError, () => instance2.day);