mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 14:39:17 +00:00

PR-URL: https://github.com/nodejs/node/pull/13263 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
21 lines
752 B
JavaScript
21 lines
752 B
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
(function testNonConfigurableProperty() {
|
|
function ownKeys(x) { return ["23", "length"]; }
|
|
var target = [];
|
|
var proxy = new Proxy(target, {ownKeys:ownKeys});
|
|
Object.defineProperty(target, "23", {value:true});
|
|
assertEquals(["23", "length"], Object.getOwnPropertyNames(proxy));
|
|
})();
|
|
|
|
(function testPreventedExtension() {
|
|
function ownKeys(x) { return ["42", "length"]; }
|
|
var target = [];
|
|
var proxy = new Proxy(target, {ownKeys:ownKeys});
|
|
target[42] = true;
|
|
Object.preventExtensions(target);
|
|
assertEquals(["42", "length"], Object.getOwnPropertyNames(proxy));
|
|
})();
|