blob: f92c178713716a16c876575bb0391c2f7cb366d5 [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: The "with" property of Temporal.PlainTime.prototype
includes: [propertyHelper.js]
features: [Temporal]
---*/
assert.sameValue(
typeof Temporal.PlainTime.prototype.with,
"function",
"`typeof PlainTime.prototype.with` is `function`"
);
verifyProperty(Temporal.PlainTime.prototype, "with", {
writable: true,
enumerable: false,
configurable: true,
});