Add Array.of non-writable property test

This commit is contained in:
Alexey Shvayka 2020-02-20 01:03:12 +02:00 committed by Rick Waldron
parent 61aa9951f2
commit ac1c1b23c6
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.of
description: >
Non-writable properties are overwritten by CreateDataProperty.
(result object's "0" is non-writable)
info: |
Array.of ( ...items )
[...]
7. Repeat, while k < len
[...]
c. Perform ? CreateDataPropertyOrThrow(A, Pk, kValue).
[...]
includes: [propertyHelper.js]
---*/
var A = function(_length) {
Object.defineProperty(this, "0", {
value: 1,
writable: false,
enumerable: false,
configurable: true,
});
};
var res = Array.of.call(A, 2);
verifyProperty(res, "0", {
value: 2,
writable: true,
enumerable: true,
configurable: true,
});