prop-desc.js (738B)
1 // Copyright (C) 2019 Leo Balter. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-aggregate-error 6 description: > 7 Property descriptor of AggregateError 8 info: | 9 The AggregateError Object 10 11 ECMAScript Standard Built-in Objects: 12 13 Every other data property described in clauses 18 through 26 and in Annex B.2 14 has the attributes { [[Writable]]: true, [[Enumerable]]: false, 15 [[Configurable]]: true } unless otherwise specified. 16 includes: [propertyHelper.js] 17 features: [AggregateError] 18 ---*/ 19 20 assert.sameValue(typeof AggregateError, 'function'); 21 22 verifyProperty(this, 'AggregateError', { 23 enumerable: false, 24 writable: true, 25 configurable: true 26 }); 27 28 reportCompare(0, 0);