prop-desc.js (591B)
1 // Copyright (C) 2016 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-number.negative_infinity 6 description: > 7 "NEGATIVE_INFINITY" property of Number 8 info: | 9 Number.NEGATIVE_INFINITY 10 11 This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, 12 [[Configurable]]: false }. 13 includes: [propertyHelper.js] 14 ---*/ 15 16 verifyNotEnumerable(Number, "NEGATIVE_INFINITY"); 17 verifyNotWritable(Number, "NEGATIVE_INFINITY"); 18 verifyNotConfigurable(Number, "NEGATIVE_INFINITY"); 19 20 reportCompare(0, 0);