summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/array-join-nonarray-length-getter-side-effects.js
blob: 3f8d2aa029c779911491eaaa46ea149af06d8479 (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
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

(function Throws() {
  function TestError() {}

  let callCount = 0;
  const a = {
    0: 1,
    1: 2,
    get length() {
      callCount++;
      throw new TestError();
    }
  };
  assertThrows(() => Array.prototype.join.call(a), TestError);
  assertSame(1, callCount);

  // Verifies cycle detection still works properly after thrown error.
  Object.defineProperty(a, 'length', {
    get() {
      callCount++;
      return 2;
    }
  });
  assertSame('1,2', Array.prototype.join.call(a));
  assertSame(2, callCount);
})();