blob: 70a7fb782a8f7c6c9036550d761604c19798c5c8 [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.
/*---
esid: sec-%typedarray%.of
description: >
Throws a TypeError if argument is a Symbol
info: |
9.4.5.9 IntegerIndexedElementSet ( O, index, value )
...
3. Let numValue be ? ToNumber(value).
...
includes: [testBigIntTypedArray.js]
features: [BigInt, Symbol, TypedArray]
---*/
var s = Symbol("1");
testWithBigIntTypedArrayConstructors(function(TA) {
assert.throws(TypeError, function() {
TA.of(s);
});
});