1 // Copyright (C) 2015 André Bargull. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
7 RangeError.name is "RangeError".
9 17 ECMAScript Standard Built-in Objects:
10 Every built-in Function object, including constructors, that is not
11 identified as an anonymous function has a name property whose value
14 Unless otherwise specified, the name property of a built-in Function
15 object, if it exists, has the attributes { [[Writable]]: false,
16 [[Enumerable]]: false, [[Configurable]]: true }.
17 includes: [propertyHelper.js]
20 assert.sameValue(RangeError.name, "RangeError");
22 verifyNotEnumerable(RangeError, "name");
23 verifyNotWritable(RangeError, "name");
24 verifyConfigurable(RangeError, "name");