prop-desc.js (472B)
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.e 6 description: > 7 "E" property of Math 8 info: | 9 This property has the attributes { [[Writable]]: false, [[Enumerable]]: 10 false, [[Configurable]]: false }. 11 includes: [propertyHelper.js] 12 ---*/ 13 14 verifyProperty(Math, 'E', { 15 writable: false, 16 enumerable: false, 17 configurable: false, 18 }); 19 20 reportCompare(0, 0);