mirror of https://github.com/tc39/test262.git
27 lines
786 B
JavaScript
27 lines
786 B
JavaScript
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
/*---
|
||
|
es6id: B.2.2.1.1
|
||
|
description: >
|
||
|
get Object.prototype.__proto__
|
||
|
|
||
|
17 ECMAScript Standard Built-in Objects
|
||
|
|
||
|
Functions that are specified as get or set accessor functions of built-in
|
||
|
properties have "get " or "set " prepended to the property name string.
|
||
|
|
||
|
includes: [propertyHelper.js]
|
||
|
---*/
|
||
|
|
||
|
var descriptor = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__');
|
||
|
|
||
|
|
||
|
assert.sameValue(
|
||
|
descriptor.get.name, 'get __proto__',
|
||
|
'The value of `descriptor.get.name` is `"get __proto__"`'
|
||
|
);
|
||
|
|
||
|
verifyNotEnumerable(descriptor.get, 'name');
|
||
|
verifyNotWritable(descriptor.get, 'name');
|
||
|
verifyConfigurable(descriptor.get, 'name');
|