blob: dfcd5e8d2ece44488bb9d9497311712d2229357a [file] [log] [blame]
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 22.1.3.26
esid: sec-array.prototype.splice
description: Abrupt completion from constructor that is a revoked Proxy object
info: |
[...]
9. Let A be ? ArraySpeciesCreate(O, actualDeleteCount).
[...]
9.4.2.3 ArraySpeciesCreate
[...]
3. Let isArray be ? IsArray(originalArray).
7.2.2 IsArray
[...]
3. If argument is a Proxy exotic object, then
a. If the value of the [[ProxyHandler]] internal slot of argument is
null, throw a TypeError exception.
features: [Proxy]
---*/
var o = Proxy.revocable([], {});
var callCount = 0;
Object.defineProperty(o.proxy, 'constructor', {
get: function() {
callCount += 1;
}
});
o.revoke();
assert.throws(TypeError, function() {
Array.prototype.splice.call(o.proxy);
});
assert.sameValue(callCount, 0, '`constructor` property not accessed');