blob: 812873914eedd5af084b528ea475b3a2da361c94 [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.prototype-@@tostringtag
description: The @@toStringTag property of Temporal.PlainTime
includes: [propertyHelper.js]
features: [Temporal]
---*/
verifyProperty(Temporal.PlainTime.prototype, Symbol.toStringTag, {
value: "Temporal.PlainTime",
writable: false,
enumerable: false,
configurable: true,
});