summaryrefslogtreecommitdiff
path: root/test/built-ins/Reflect/getOwnPropertyDescriptor/undefined-own-property.js
blob: 0f97d52c54e615a05cd2736928d7d45e69d71657 (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
// Copyright (C) 2015 Leonardo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 26.1.7
description: >
  Return undefined for an non existing own property.
info: |
  26.1.7 Reflect.getOwnPropertyDescriptor ( target, propertyKey )

  ...
  4. Let desc be target.[[GetOwnProperty]](key).
  5. ReturnIfAbrupt(desc).
  6. Return FromPropertyDescriptor(desc).

  6.2.4.4 FromPropertyDescriptor ( Desc )

  1. If Desc is undefined, return undefined.
---*/

var o = Object.create({
  p: 1
});

var result = Reflect.getOwnPropertyDescriptor(o, 'p');
assert.sameValue(result, undefined);