prop-desc.js (667B)
1 // Copyright (C) 2017 The V8 Project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-bigint-constructor 6 description: > 7 Property descriptor of BigInt 8 info: | 9 The BigInt 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: [BigInt] 18 ---*/ 19 20 verifyProperty(this, "BigInt", { 21 enumerable: false, 22 writable: true, 23 configurable: true 24 }); 25 26 reportCompare(0, 0);