blob: 9d7d856d37d623f644a5a342e1ca8ddcd42d8da2 [file] [log] [blame]
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-intl.datetimeformat.prototype-@@tostringtag
description: >
Property descriptor of Intl.DateTimeFormat.prototype[@@toStringTag].
info: |
Intl.DateTimeFormat.prototype [ @@toStringTag ]
The initial value of the @@toStringTag property is the String value "Intl.DateTimeFormat".
This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
features: [Symbol.toStringTag]
includes: [propertyHelper.js]
---*/
verifyProperty(Intl.DateTimeFormat.prototype, Symbol.toStringTag, {
value: "Intl.DateTimeFormat",
writable: false,
enumerable: false,
configurable: true,
});