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