Add Function.prototype.length property descriptor test

This commit is contained in:
Alexey Shvayka 2020-08-19 02:03:35 +03:00 committed by Rick Waldron
parent 51fac5f93b
commit 36f73c6142
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-properties-of-the-function-prototype-object
description: >
Function.prototype.length is 0.
info: |
Properties of the Function Prototype Object
The Function prototype object:
[...]
* has a "length" property whose value is 0.
ECMAScript Standard Built-in Objects
Unless otherwise specified, the "length" property of a built-in function object has
the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
---*/
verifyProperty(Function.prototype, "length", {
value: 0,
writable: false,
enumerable: false,
configurable: true,
});