summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/unshift/throws-with-string-receiver.js
blob: 7db1e088fdda03b706354ae3f4eec10475e18c49 (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
// Copyright (C) 2020 Sony Interactive Entertainment Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.unshift
description: >
  Array#unshift throws TypeError upon attempting to modify a string
info: |
  Array.prototype.unshift ( ...items )
  ...
  4. If argCount > 0, then
    ...
    c. Repeat, while k > 0,
      ...
      iv. If fromPresent is true, then
        ...
        2. Perform ? Set(O, to, fromValue, true).
      ...
    ...
    f. Repeat, while items is not empty
      ...
      Perform ? Set(O, ! ToString(j), E, true).
      ...
  5. Perform ? Set(O, "length", len + argCount, true).

  Set ( O, P, V, Throw )
  ...
  4. Let success be ? O.[[Set]](P, V, O).
  5. If success is false and Throw is true, throw a TypeError exception.
---*/

assert.throws(TypeError, () => {
  Array.prototype.unshift.call('');
}, "Array.prototype.unshift.call('')");

assert.throws(TypeError, () => {
  Array.prototype.unshift.call('', 1);
}, "Array.prototype.unshift.call('', 1)");

assert.throws(TypeError, () => {
  Array.prototype.unshift.call('abc');
}, "Array.prototype.unshift.call('abc')");

assert.throws(TypeError, () => {
  Array.prototype.unshift.call('abc', 1);
}, "Array.prototype.unshift.call('abc', 1)");

reportCompare(0, 0);