argument-plaindatetime.js (678B)
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.plaintime.from 7 description: Fast path for converting Temporal.PlainDateTime to Temporal.PlainTime by reading internal slots 8 includes: [compareArray.js, temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 TemporalHelpers.checkPlainDateTimeConversionFastPath((plainDateTime) => { 13 const result = Temporal.PlainTime.from(plainDateTime); 14 TemporalHelpers.assertPlainTime(result, 12, 34, 56, 987, 654, 321); 15 }); 16 17 reportCompare(0, 0);