summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/prototype/map/this-is-not-tuple.js
blob: 5464da96f5c998c250335be3020067d360b078e6 (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
// |reftest| skip-if(!this.hasOwnProperty("Tuple"))
// 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.map
description: Throws a TypeError exception when `this` is not a Tuple
info: |

features: [Tuple]
---*/

var map = Tuple.prototype.map;
var callbackfn = function() {};

var thisVals = [[undefined, "undefined"],
                [null, "null"],
                [42, "42"],
                ["1", "1"],
                [true, "true"],
                [false, "false"],
                [Symbol("s"), "Symbol(\"s\")"]];

for (pair of thisVals) {
    thisVal = pair[0];
    errorMsg = "this is: " + pair[1];
    assertThrowsInstanceOf(() => map.call(thisVal, callbackfn),
                           TypeError, errorMsg);
}

reportCompare(0, 0);