mirror of https://github.com/tc39/test262.git
20 lines
586 B
JavaScript
20 lines
586 B
JavaScript
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es6id: 20.1.2.11
|
|
esid: sec-number.negative_infinity
|
|
description: >
|
|
"NEGATIVE_INFINITY" property of Number
|
|
info: >
|
|
Number.NEGATIVE_INFINITY
|
|
|
|
This property has the attributes { [[Writable]]: false, [[Enumerable]]: false,
|
|
[[Configurable]]: false }.
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
|
|
verifyNotEnumerable(Number, "NEGATIVE_INFINITY");
|
|
verifyNotWritable(Number, "NEGATIVE_INFINITY");
|
|
verifyNotConfigurable(Number, "NEGATIVE_INFINITY");
|