blob: 7107cb4de2b386bfa938da9ae4ee66582aebd8e6 [file] [log] [blame]
// Copyright (C) 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-arraybuffer.prototype.resizable
description: Throws a TypeError exception when invoked as a function
info: |
get ArrayBuffer.prototype.resizable
1. Let O be the this value.
2. Perform ? RequireInternalSlot(O, [[ArrayBufferData]]).
[...]
features: [resizable-arraybuffer]
---*/
var getter = Object.getOwnPropertyDescriptor(
ArrayBuffer.prototype, 'resizable'
).get;
assert.sameValue(typeof getter, 'function');
assert.throws(TypeError, function() {
getter();
});