blob: aa7329778de25342e1881e4ca5d2eecc304ce31c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/ */
// Reflect.getOwnPropertyDescriptor inspects object properties.
assertDeepEq(
Reflect.getOwnPropertyDescriptor({x: "hello"}, "x"),
{value: "hello", writable: true, enumerable: true, configurable: true});
assertEq(
Reflect.getOwnPropertyDescriptor({x: "hello"}, "y"),
undefined);
assertDeepEq(
Reflect.getOwnPropertyDescriptor([], "length"),
{value: 0, writable: true, enumerable: false, configurable: false});
// Reflect.getOwnPropertyDescriptor shares its implementation with
// Object.getOwnPropertyDescriptor. The only difference is how non-object
// targets are handled.
//
// For more Reflect.getOwnPropertyDescriptor tests, see target.js and propertyKeys.js.
reportCompare(0, 0);
|