argument-number.js (867B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2022 Igalia, S.L. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.plaindate.compare 7 description: A number cannot be used in place of a Temporal.PlainDate 8 features: [Temporal] 9 ---*/ 10 11 const numbers = [ 12 1, 13 19761118, 14 -19761118, 15 1234567890, 16 ]; 17 18 for (const arg of numbers) { 19 assert.throws( 20 TypeError, 21 () => Temporal.PlainDate.compare(arg, new Temporal.PlainDate(1976, 11, 18)), 22 "A number is not a valid ISO string for PlainDate (first argument)" 23 ); 24 assert.throws( 25 TypeError, 26 () => Temporal.PlainDate.compare(new Temporal.PlainDate(1976, 11, 18), arg), 27 "A number is not a valid ISO string for PlainDate (second argument)" 28 ); 29 } 30 31 reportCompare(0, 0);