blob: f7d3ba6aa7709d107a4719bf157a8c3a3d02b362 [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.pluralrules.prototype-tostringtag
description: >
Property descriptor of Intl.PluralRules.prototype[@@toStringTag].
info: |
Intl.PluralRules.prototype [ @@toStringTag ]
The initial value of the @@toStringTag property is the String value "Intl.PluralRules".
This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
features: [Symbol.toStringTag]
includes: [propertyHelper.js]
---*/
verifyProperty(Intl.PluralRules.prototype, Symbol.toStringTag, {
value: "Intl.PluralRules",
writable: false,
enumerable: false,
configurable: true,
});