blob: 203962c4780bfc2460a412c3ca22b753b2f19c6f [file] [log] [blame]
// Copyright (C) 2020 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
`Symbol.toStringTag` property descriptor
info: |
The initial value of the @@toStringTag property is the String value
"Reflect".
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [Symbol.toStringTag, Reflect]
---*/
verifyProperty(Reflect, Symbol.toStringTag, {
value: 'Reflect',
enumerable: false,
writable: false,
configurable: true,
});