argument-string-trailing-junk.js (559B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2022 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.plaindate.from 7 description: RangeError thrown if a string with trailing junk is used as a PlainDate 8 features: [Temporal, arrow-function] 9 ---*/ 10 11 assert.throws(RangeError, () => Temporal.PlainDate.from("1976-11-18junk"), 12 "String with trailing junk should not be valid as a PlainDate"); 13 14 reportCompare(0, 0);