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