// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally // Copyright (C) 2021 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-temporal.calendar.prototype.dateadd description: Temporal.Calendar.prototype.dateAdd add duration with years and weeks and calculate correctly. info: | 8. Let result be ? AddISODate(date.[[ISOYear]], date.[[ISOMonth]], date.[[ISODay]], duration.[[Years]], duration.[[Months]], duration.[[Weeks]], duration.[[Days]], overflow). features: [Temporal] includes: [temporalHelpers.js] ---*/ let cal = new Temporal.Calendar("iso8601"); let p1y2w = new Temporal.Duration(1,0,2); TemporalHelpers.assertPlainDate( cal.dateAdd("2020-02-28", p1y2w), 2021, 3, "M03", 14, "add 1 year and 2 weeks to Feb 28 and cause roll into March in a non leap year"); TemporalHelpers.assertPlainDate( cal.dateAdd("2020-02-29", p1y2w), 2021, 3, "M03", 14, "add 1 year and 2 weeks to Feb 29 and cause roll into March in a non leap year"); TemporalHelpers.assertPlainDate( cal.dateAdd("2019-02-28", p1y2w), 2020, 3, "M03", 13, "add 1 year and 2 weeks to Feb 28 and cause roll into March in a leap year"); TemporalHelpers.assertPlainDate( cal.dateAdd("2021-02-28", p1y2w), 2022, 3, "M03", 14, "add 1 year and 2 weeks to Feb 28 and cause roll into March in a non leap year"); TemporalHelpers.assertPlainDate( cal.dateAdd("2020-12-28", p1y2w), 2022, 1, "M01", 11, "add 1 year and 2 weeks and cause roll into a new year"); reportCompare(0, 0);