summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/name.js
blob: 653145db42798c4383cd8fbc2332db48de504551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 19.2.3
description: FunctionPrototype `name` property
info: |
    The value of the name property of the Function prototype object is the
    empty String.

    ES6 Section 17:

    Unless otherwise specified, the name property of a built-in Function
    object, if it exists, has the attributes { [[Writable]]: false,
    [[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
---*/

assert.sameValue(Function.prototype.name, '');
verifyNotEnumerable(Function.prototype, 'name');
verifyNotWritable(Function.prototype, 'name');
verifyConfigurable(Function.prototype, 'name');

reportCompare(0, 0);