blob: e06d11f76fc3e6d421cbafa191ba38113f763133 [file] [log] [blame]
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plaintime.prototype.with
description: Objects of a subclass are never created as return values for with()
includes: [temporalHelpers.js]
features: [Temporal]
---*/
TemporalHelpers.checkSubclassingIgnored(
Temporal.PlainTime,
[12, 34, 56, 987, 654, 321],
"with",
[{ nanosecond: 1 }],
(result) => TemporalHelpers.assertPlainTime(result, 12, 34, 56, 987, 654, 1),
);