constructor.js (519B)
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.plaintime 7 description: Temporal.PlainTime constructor cannot be called as a function 8 info: | 9 1. If NewTarget is undefined, throw a TypeError exception. 10 features: [Temporal] 11 ---*/ 12 13 assert.throws(TypeError, () => Temporal.PlainTime(12, 0, 0)); 14 15 reportCompare(0, 0);