prop-desc.js (578B)
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-math.exp 6 description: > 7 "exp" property of Math 8 info: | 9 Section 17: Every other data property described in clauses 18 through 26 10 and in Annex B.2 has the attributes { [[Writable]]: true, 11 [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified. 12 includes: [propertyHelper.js] 13 ---*/ 14 15 verifyProperty(Math, "exp", { 16 writable: true, 17 enumerable: false, 18 configurable: true 19 }); 20 21 reportCompare(0, 0);