summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/object/fn-name-accessor-get.js
blob: 83edde67500708273396c12abb97eb744647239e (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 14.3.9
description: Assignment of function `name` attribute ("get" accessor)
info: |
    MethodDefinition : get PropertyName ( ) { FunctionBody }

    [...]
    8. Perform SetFunctionName(closure, propKey, "get").
includes: [propertyHelper.js]
features: [Symbol]
---*/

var namedSym = Symbol('test262');
var anonSym = Symbol();
var o, getter;

o = {
  get id() {},
  get [anonSym]() {},
  get [namedSym]() {}
};

getter = Object.getOwnPropertyDescriptor(o, 'id').get;
verifyProperty(getter, 'name', {
  value: 'get id',
  writable: false,
  enumerable: false,
  configurable: true,
});

getter = Object.getOwnPropertyDescriptor(o, anonSym).get;
verifyProperty(getter, 'name', {
  value: 'get ',
  writable: false,
  enumerable: false,
  configurable: true,
});

getter = Object.getOwnPropertyDescriptor(o, namedSym).get;
verifyProperty(getter, 'name', {
  value: 'get [test262]',
  writable: false,
  enumerable: false,
  configurable: true,
});

reportCompare(0, 0);