argument-string.js (984B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2021 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: basic string coercion in arguments 8 features: [Temporal] 9 ---*/ 10 11 const d1 = Temporal.PlainDate.from("1976-11-18"); 12 const d2 = Temporal.PlainDate.from("2019-06-30"); 13 14 assert.sameValue(Temporal.PlainDate.compare("1976-11-18", d2), -1, "first argument"); 15 assert.sameValue(Temporal.PlainDate.compare("2019-06-30", d2), 0, "first argument"); 16 assert.sameValue(Temporal.PlainDate.compare("2024-01-12", d2), 1, "first argument"); 17 18 assert.sameValue(Temporal.PlainDate.compare(d1, "2019-06-30"), -1, "second argument"); 19 assert.sameValue(Temporal.PlainDate.compare(d1, "1976-11-18"), 0, "second argument"); 20 assert.sameValue(Temporal.PlainDate.compare(d1, "1926-07-07"), 1, "second argument"); 21 22 reportCompare(0, 0);