blob: fef23511f0ef87fb3ec406275902e3c9bb5ef907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// |reftest| skip -- Temporal is not supported
// Copyright (C) 2020 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.compare
description: compare() ignores the observable properties and uses internal slots
features: [Temporal]
---*/
function CustomError() {}
class AvoidGettersYearMonth extends Temporal.PlainYearMonth {
get year() {
throw new CustomError();
}
get month() {
throw new CustomError();
}
}
const one = new AvoidGettersYearMonth(2000, 5);
const two = new AvoidGettersYearMonth(2006, 3);
assert.sameValue(Temporal.PlainYearMonth.compare(one, two), -1);
reportCompare(0, 0);
|