blob: 4fd82141c27a39ebe4e03607b5321b7ab564e4a4 [file] [log] [blame]
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plaintime.from
description: Fast path for converting Temporal.PlainDateTime to Temporal.PlainDate by reading internal slots
includes: [compareArray.js, temporalHelpers.js]
features: [Temporal]
---*/
TemporalHelpers.checkPlainDateTimeConversionFastPath((plainDateTime) => {
const result = Temporal.PlainTime.from(plainDateTime);
TemporalHelpers.assertPlainTime(result, 12, 34, 56, 987, 654, 321);
});