blob: b15a19e7572bf07e19f7e856a04486018969be45 [file] [log] [blame]
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-aggregate-error.prototype.name
description: >
The `AggregateError.prototype.name` property descriptor.
info: |
The initial value of AggregateError.prototype.name is "AggregateError".
17 ECMAScript Standard Built-in Objects:
Every other data property described (...) has the attributes { [[Writable]]: true,
[[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
features: [AggregateError]
---*/
verifyProperty(AggregateError.prototype, 'name', {
value: 'AggregateError',
enumerable: false,
writable: true,
configurable: true
});