mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			635 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			635 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// 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);
 |