summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/pop/throws-with-string-receiver.js
blob: 4c2bfa1bff4f3906d5c8fdf5b4f87da381fac91c (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
// 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.pop
description: >
  Array#pop throws TypeError upon attempting to modify a string
info: |
  Array.prototype.pop ( )
  ...
  3. If len is zero, then
    a. Perform ? Set(O, "length", 0, true).
    ...
  4. Else,
    ...
    f. Perform ? Set(O, "length", newLen, 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.pop.call('');
}, "Array.prototype.pop.call('')");

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

reportCompare(0, 0);