argument.js (740B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2020 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.instant 7 description: TypeError thrown if input is of wrong primitive type 8 features: [Symbol, Temporal] 9 ---*/ 10 11 assert.throws(TypeError, () => new Temporal.Instant(), "undefined"); 12 assert.throws(TypeError, () => new Temporal.Instant(undefined), "undefined"); 13 assert.throws(TypeError, () => new Temporal.Instant(null), "null"); 14 assert.throws(TypeError, () => new Temporal.Instant(42), "number"); 15 assert.throws(TypeError, () => new Temporal.Instant(Symbol()), "symbol"); 16 17 reportCompare(0, 0);