missing-arguments.js (759B)
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.plainmonthday 7 description: RangeError thrown after processing given args when invoked without all required args 8 includes: [compareArray.js, temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 const expected = [ 13 "get month.valueOf", 14 "call month.valueOf", 15 ]; 16 const actual = []; 17 const args = [ 18 TemporalHelpers.toPrimitiveObserver(actual, 1, "month"), 19 ]; 20 21 assert.throws(RangeError, () => new Temporal.PlainMonthDay(...args)); 22 assert.compareArray(actual, expected, "order of operations"); 23 24 reportCompare(0, 0);