summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/prototype/set/this-is-not-object.js
blob: d8b62e11a2c3687836cc77505cd22ea1abe0c3dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// 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%.prototype.set-overloaded-offset
description: Throws a TypeError exception when `this` is not Object
info: |
  22.2.3.23 %TypedArray%.prototype.set

  ...
  2. Let target be the this value.
  3. If Type(target) is not Object, throw a TypeError exception.
  ...
includes: [testTypedArray.js]
features: [Symbol, TypedArray]
---*/

var set = TypedArray.prototype.set;

assert.throws(TypeError, function() {
  set.call(undefined, []);
}, "this is undefined");

assert.throws(TypeError, function() {
  set.call(null, []);
}, "this is null");

assert.throws(TypeError, function() {
  set.call(undefined, new Int8Array());
}, "this is undefined");

assert.throws(TypeError, function() {
  set.call(null, new Int8Array());
}, "this is null");

assert.throws(TypeError, function() {
  set.call(42, []);
}, "this is 42");

assert.throws(TypeError, function() {
  set.call("1", []);
}, "this is a string");

assert.throws(TypeError, function() {
  set.call(true, []);
}, "this is true");

assert.throws(TypeError, function() {
  set.call(false, []);
}, "this is false");

var s1 = Symbol("s");
assert.throws(TypeError, function() {
  set.call(s1, []);
}, "this is a Symbol");

assert.throws(TypeError, function() {
  set.call(42, new Int8Array(1));
}, "this is 42");

assert.throws(TypeError, function() {
  set.call("1", new Int8Array(1));
}, "this is a string");

assert.throws(TypeError, function() {
  set.call(true, new Int8Array(1));
}, "this is true");

assert.throws(TypeError, function() {
  set.call(false, new Int8Array(1));
}, "this is false");

var s2 = Symbol("s");
assert.throws(TypeError, function() {
  set.call(s2, new Int8Array(1));
}, "this is a Symbol");

reportCompare(0, 0);